Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: src/ast.h

Issue 13812011: Fix KeyedAccessStoreMode on Windows (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index dddfc835fd284d400973b7c9cd994c3627bbeac7..74c61450b8a68f5c232781fef89dbd0f1b48aaee 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -1811,7 +1811,8 @@ class CountOperation: public Expression {
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 @@ class Assignment: public Expression {
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_;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698