Reviewers: William Hesse,

Description:
Fix minor syntax error which broke the compilation.

[email protected]


Please review this at http://codereview.chromium.org/660377

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

Affected files:
  M     src/rewriter.cc


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