Index: src/arm64/lithium-arm64.cc |
diff --git a/src/arm64/lithium-arm64.cc b/src/arm64/lithium-arm64.cc |
index b15b414bfb0b718371dbd8ec4bcde2a08286ca5b..237714c86469df2835e9f63642bc4d3d09dcf6e4 100644 |
--- a/src/arm64/lithium-arm64.cc |
+++ b/src/arm64/lithium-arm64.cc |
@@ -354,12 +354,6 @@ const char* LArithmeticT::Mnemonic() const { |
} |
-void LChunkBuilder::Abort(BailoutReason reason) { |
- info()->set_bailout_reason(reason); |
- status_ = ABORTED; |
-} |
- |
- |
LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { |
return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, |
Register::ToAllocationIndex(reg)); |
@@ -2689,7 +2683,7 @@ LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { |
} else { |
spill_index = env_index - instr->environment()->first_local_index(); |
if (spill_index > LUnallocated::kMaxFixedSlotIndex) { |
- Abort(kTooManySpillSlotsNeededForOSR); |
+ Retry(kTooManySpillSlotsNeededForOSR); |
spill_index = 0; |
} |
} |