Index: src/x64/lithium-codegen-x64.cc |
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc |
index 6385416bed983a2d5a26fd8532902dcc0657c446..5af2795f0482d1be4a7ab43c9a436ae0cfc0955c 100644 |
--- a/src/x64/lithium-codegen-x64.cc |
+++ b/src/x64/lithium-codegen-x64.cc |
@@ -1911,7 +1911,8 @@ void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) { |
Register map = ToRegister(instr->TempAt(0)); |
__ movq(map, FieldOperand(object, HeapObject::kMapOffset)); |
__ bind(deferred->map_check()); // Label for calculating code patching. |
- __ Move(kScratchRegister, factory()->the_hole_value()); |
+ __ movq(kScratchRegister, factory()->the_hole_value(), |
+ RelocInfo::EMBEDDED_OBJECT); |
__ cmpq(map, kScratchRegister); // Patched to cached map. |
__ j(not_equal, &cache_miss); |
// Patched to load either true or false. |