Index: src/x64/lithium-codegen-x64.cc |
=================================================================== |
--- src/x64/lithium-codegen-x64.cc (revision 13870) |
+++ src/x64/lithium-codegen-x64.cc (working copy) |
@@ -353,9 +353,9 @@ |
} |
} else { |
if (is_lazy_deopt) { |
- __ Call(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ call(entry, RelocInfo::RUNTIME_ENTRY); |
} else { |
- __ Jump(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ jmp(entry, RelocInfo::RUNTIME_ENTRY); |
} |
} |
} |
@@ -754,9 +754,9 @@ |
bool needs_lazy_deopt = info()->IsStub(); |
if (cc == no_condition && frame_is_built_) { |
if (needs_lazy_deopt) { |
- __ Call(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ call(entry, RelocInfo::RUNTIME_ENTRY); |
} else { |
- __ Jump(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ jmp(entry, RelocInfo::RUNTIME_ENTRY); |
} |
} else { |
// We often have several deopts to the same entry, reuse the last |