Reviewers: Jakob,

Message:
PTAL

Description:
Fix KeyedAccessStoreMode on Windows

[email protected]


Please review this at https://codereview.chromium.org/13812011/

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

Affected files:
  M src/ast.h


Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index dddfc835fd284d400973b7c9cd994c3627bbeac7..6d126b18921eb35c6f9be899e66ef25a77260c10 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -1811,7 +1811,7 @@ class CountOperation: public Expression {
   Token::Value op_;
   bool is_prefix_ : 1;
   bool is_monomorphic_ : 1;
-  KeyedAccessStoreMode store_mode_: 4;
+  KeyedAccessStoreMode store_mode_: 5;
   Expression* expression_;
   int pos_;
   const BailoutId assignment_id_;
@@ -1953,7 +1953,7 @@ class Assignment: public Expression {
   const BailoutId assignment_id_;

   bool is_monomorphic_ : 1;
-  KeyedAccessStoreMode store_mode_ : 4;
+  KeyedAccessStoreMode store_mode_ : 5;
   SmallMapList receiver_types_;
 };



--
--
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/groups/opt_out.


Reply via email to