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

Unified Diff: src/compiler/js-operator.h

Issue 509343002: Better typing and type verification (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Small refactoring Created 6 years, 2 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
Index: src/compiler/js-operator.h
diff --git a/src/compiler/js-operator.h b/src/compiler/js-operator.h
index fd9547d94a50b356b059951403d3adc98aa8ca4f..4a732966349a7dcbbf60cd6e9afe24e19dd20dcf 100644
--- a/src/compiler/js-operator.h
+++ b/src/compiler/js-operator.h
@@ -144,7 +144,7 @@ class JSOperatorBuilder {
}
Operator* StoreContext(uint16_t depth, uint32_t index) {
ContextAccess access(depth, index, false);
- OP1(JSStoreContext, ContextAccess, access, Operator::kNoProperties, 2, 1);
+ OP1(JSStoreContext, ContextAccess, access, Operator::kNoProperties, 2, 0);
}
Operator* TypeOf() { SIMPLE(JSTypeOf, Operator::kPure, 1, 1); }

Powered by Google App Engine
This is Rietveld 408576698