Revision: 25077
Author:   [email protected]
Date:     Mon Nov  3 14:59:19 2014 UTC
Log:      Fix uninitialized fields in the BinaryOperation ast node.

[email protected], [email protected]
BUG=chromium:429194
LOG=n

Review URL: https://codereview.chromium.org/701533002
https://code.google.com/p/v8/source/detail?r=25077

Modified:
 /branches/bleeding_edge/src/ast.h

=======================================
--- /branches/bleeding_edge/src/ast.h   Thu Oct 30 14:21:27 2014 UTC
+++ /branches/bleeding_edge/src/ast.h   Mon Nov  3 14:59:19 2014 UTC
@@ -2094,6 +2094,8 @@
                   Expression* right, int pos)
       : Expression(zone, pos),
         op_(static_cast<byte>(op)),
+        has_fixed_right_arg_(false),
+        fixed_right_arg_value_(0),
         left_(left),
         right_(right) {
     DCHECK(Token::IsBinaryOp(op));

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to