| Index: src/ia32/lithium-ia32.cc | 
| =================================================================== | 
| --- src/ia32/lithium-ia32.cc	(revision 10597) | 
| +++ src/ia32/lithium-ia32.cc	(working copy) | 
| @@ -797,7 +797,9 @@ | 
| LUnallocated* operand = | 
| new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); | 
| operand->set_virtual_register(allocator_->GetVirtualRegister()); | 
| -  if (!allocator_->AllocationOk()) Abort("Not enough virtual registers (temps)."); | 
| +  if (!allocator_->AllocationOk()) { | 
| +    Abort("Not enough virtual registers (temps)."); | 
| +  } | 
| return operand; | 
| } | 
|  | 
|  |