Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 6961a0dcec3fe3084b2fa2117dddc83dabb67caf..7272f545d4a7116c12ffdd089ddb5520aea5a7d4 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -675,8 +675,12 @@ LInstruction* LChunkBuilder::AssignPointerMap(LInstruction* instr) { |
LUnallocated* LChunkBuilder::TempRegister() { |
LUnallocated* operand = |
new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); |
- operand->set_virtual_register(allocator_->GetVirtualRegister()); |
- if (!allocator_->AllocationOk()) Abort("Not enough virtual registers."); |
+ int vreg = allocator_->GetVirtualRegister(); |
+ if (!allocator_->AllocationOk()) { |
+ Abort("Out of virtual registers while trying to allocate temp register."); |
+ return NULL; |
+ } |
+ operand->set_virtual_register(vreg); |
return operand; |
} |