Index: src/x87/lithium-x87.cc |
diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc |
index 993f5adf27e032d8ed065e29df62da058a13ca8f..f46aef9294ebf0fe1ab5db946ebf8cf8b114560d 100644 |
--- a/src/x87/lithium-x87.cc |
+++ b/src/x87/lithium-x87.cc |
@@ -472,12 +472,6 @@ LPlatformChunk* LChunkBuilder::Build() { |
} |
-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)); |
@@ -2534,7 +2528,7 @@ LInstruction* LChunkBuilder::DoUnknownOSRValue(HUnknownOSRValue* instr) { |
} else { |
spill_index = env_index - instr->environment()->first_local_index(); |
if (spill_index > LUnallocated::kMaxFixedSlotIndex) { |
- Abort(kNotEnoughSpillSlotsForOsr); |
+ Retry(kNotEnoughSpillSlotsForOsr); |
spill_index = 0; |
} |
if (spill_index == 0) { |