Revision: 14189
Author:   [email protected]
Date:     Tue Apr  9 09:26:30 2013
Log:      Fix KeyedAccessStoreMode on Windows

[email protected]

Review URL: https://codereview.chromium.org/13812011
http://code.google.com/p/v8/source/detail?r=14189

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

=======================================
--- /branches/bleeding_edge/src/ast.h   Tue Apr  2 11:00:50 2013
+++ /branches/bleeding_edge/src/ast.h   Tue Apr  9 09:26:30 2013
@@ -1811,7 +1811,8 @@
   Token::Value op_;
   bool is_prefix_ : 1;
   bool is_monomorphic_ : 1;
-  KeyedAccessStoreMode store_mode_: 4;
+  KeyedAccessStoreMode store_mode_ : 5;  // Windows treats as signed,
+                                         // must have extra bit.
   Expression* expression_;
   int pos_;
   const BailoutId assignment_id_;
@@ -1953,7 +1954,8 @@
   const BailoutId assignment_id_;

   bool is_monomorphic_ : 1;
-  KeyedAccessStoreMode store_mode_ : 4;
+  KeyedAccessStoreMode store_mode_ : 5;  // Windows treats as signed,
+                                         // must have extra bit.
   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