Author: [EMAIL PROTECTED]
Date: Mon Oct 13 03:46:11 2008
New Revision: 490

Modified:
    branches/bleeding_edge/src/codegen-ia32.cc

Log:
Fix lint error in codegen-ia32.cc.
Review URL: http://codereview.chromium.org/7264

Modified: branches/bleeding_edge/src/codegen-ia32.cc
==============================================================================
--- branches/bleeding_edge/src/codegen-ia32.cc  (original)
+++ branches/bleeding_edge/src/codegen-ia32.cc  Mon Oct 13 03:46:11 2008
@@ -2118,7 +2118,8 @@
    __ bind(&unlink);
    // Reload sp from the top handler, because some statements that we
    // break from (eg, for...in) may have left stuff on the stack.
-  frame_->Pop(eax);  // preserve the TOS in a register across stack  
manipulation
+  // Preserve the TOS in a register across stack manipulation.
+  frame_->Pop(eax);
    ExternalReference handler_address(Top::k_handler_address);
    __ mov(edx, Operand::StaticVariable(handler_address));
    const int kNextOffset = StackHandlerConstants::kNextOffset +
@@ -2127,8 +2128,9 @@

    frame_->Pop(Operand::StaticVariable(handler_address));
    frame_->Drop(StackHandlerConstants::kSize / kPointerSize - 1);
-  // next_sp popped.
-  frame_->Push(eax);  // preserve the TOS in a register across stack  
manipulation
+  // Next_sp popped.
+  // Preserve the TOS in a register across stack manipulation.
+  frame_->Push(eax);

    // --- Finally block ---
    __ bind(&finally_block);

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

Reply via email to