Reviewers: Sven,

Description:
Fix presubmit errors.

[email protected]

Please review this at https://chromiumcodereview.appspot.com/9309079/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     src/ia32/lithium-ia32.cc
  M     src/lithium-allocator.cc


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;
 }

Index: src/lithium-allocator.cc
===================================================================
--- src/lithium-allocator.cc    (revision 10597)
+++ src/lithium-allocator.cc    (working copy)
@@ -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