Index: src/x64/stub-cache-x64.cc |
diff --git a/src/x64/stub-cache-x64.cc b/src/x64/stub-cache-x64.cc |
index 9bf6e9f2fb34d2ec94d52a3067d33092ff7a2995..5f8164577f74e516b4de5cc5d7cc3077c1f97933 100644 |
--- a/src/x64/stub-cache-x64.cc |
+++ b/src/x64/stub-cache-x64.cc |
@@ -1308,7 +1308,7 @@ Register LoadStubCompiler::CallbackHandlerFrontend( |
__ movq(scratch2(), |
Operand(dictionary, index, times_pointer_size, |
kValueOffset - kHeapObjectTag)); |
- __ movq(scratch3(), callback, RelocInfo::EMBEDDED_OBJECT); |
+ __ Move(scratch3(), callback, RelocInfo::EMBEDDED_OBJECT); |
__ cmpq(scratch2(), scratch3()); |
__ j(not_equal, &miss); |
} |
@@ -2668,7 +2668,7 @@ Handle<Code> KeyedStoreStubCompiler::CompileStorePolymorphic( |
} else { |
Label next_map; |
__ j(not_equal, &next_map, Label::kNear); |
- __ movq(transition_map(), |
+ __ Move(transition_map(), |
transitioned_maps->at(i), |
RelocInfo::EMBEDDED_OBJECT); |
__ jmp(handler_stubs->at(i), RelocInfo::CODE_TARGET); |