Index: src/mips/lithium-codegen-mips.cc |
=================================================================== |
--- src/mips/lithium-codegen-mips.cc (revision 13624) |
+++ src/mips/lithium-codegen-mips.cc (working copy) |
@@ -785,7 +785,7 @@ |
ASSERT(FLAG_deopt_every_n_times < 2); // Other values not supported on MIPS. |
if (FLAG_deopt_every_n_times == 1 && info_->opt_count() == id) { |
- __ Jump(entry, RelocInfo::RUNTIME_ENTRY); |
+ __ Jump(entry, RelocInfo::EXTERNAL_REFERENCE); |
return; |
} |
@@ -801,7 +801,7 @@ |
bool needs_lazy_deopt = info()->IsStub(); |
ASSERT(info()->IsStub() || frame_is_built_); |
if (cc == al && !needs_lazy_deopt) { |
- __ Jump(entry, RelocInfo::RUNTIME_ENTRY, cc, src1, src2); |
+ __ Jump(entry, RelocInfo::EXTERNAL_REFERENCE, cc, src1, src2); |
} else { |
// We often have several deopts to the same entry, reuse the last |
// jump entry if this is the case. |