Revision: 4000
Author: [email protected]
Date: Tue Mar  2 06:32:31 2010
Log: Fix minor syntax error which broke the compilation.

[email protected]

Review URL: http://codereview.chromium.org/660377
http://code.google.com/p/v8/source/detail?r=4000

Modified:
 /branches/bleeding_edge/src/rewriter.cc

=======================================
--- /branches/bleeding_edge/src/rewriter.cc     Tue Mar  2 06:00:59 2010
+++ /branches/bleeding_edge/src/rewriter.cc     Tue Mar  2 06:32:31 2010
@@ -249,7 +249,7 @@
       Slot* slot = var->slot();
       node->set_side_effect_free(
           (slot->type() == Slot::LOCAL  && !slot->is_arguments()) ||
-          slot->type() == Slot::PARAMETER));
+          slot->type() == Slot::PARAMETER);
       // stack_height and expression_size remain 0.
     }
   }

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

Reply via email to