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