Fix lint error in codegen-ia32.cc.
authorwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 13 Oct 2008 10:46:11 +0000 (10:46 +0000)
committerwhesse@chromium.org <whesse@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Mon, 13 Oct 2008 10:46:11 +0000 (10:46 +0000)
Review URL: http://codereview.chromium.org/7264

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@490 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/codegen-ia32.cc

index 7db5d44f033a1453f4868e42313e4e4e91351511..a514e6000a163e77f281954e42c72577d93475c5 100644 (file)
@@ -2118,7 +2118,8 @@ void CodeGenerator::VisitTryFinally(TryFinally* node) {
   __ 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 @@ void CodeGenerator::VisitTryFinally(TryFinally* node) {
 
   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);