Revision: 10598
Author:   [email protected]
Date:     Fri Feb  3 04:43:33 2012
Log:      Fix presubmit errors.

[email protected]
Review URL: https://chromiumcodereview.appspot.com/9309079
http://code.google.com/p/v8/source/detail?r=10598

Modified:
 /branches/bleeding_edge/src/ia32/lithium-ia32.cc
 /branches/bleeding_edge/src/lithium-allocator.cc

=======================================
--- /branches/bleeding_edge/src/ia32/lithium-ia32.cc Fri Feb 3 04:05:08 2012 +++ /branches/bleeding_edge/src/ia32/lithium-ia32.cc Fri Feb 3 04:43:33 2012
@@ -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;
 }

=======================================
--- /branches/bleeding_edge/src/lithium-allocator.cc Fri Feb 3 04:05:08 2012 +++ /branches/bleeding_edge/src/lithium-allocator.cc Fri Feb 3 04:43:33 2012
@@ -855,7 +855,7 @@

         LUnallocated* input_copy = cur_input->CopyUnconstrained();
         cur_input->set_virtual_register(GetVirtualRegister());
-        if(!AllocationOk()) return;
+        if (!AllocationOk()) return;

         if (RequiredRegisterKind(input_copy->virtual_register()) ==
             DOUBLE_REGISTERS) {

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to