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

Unified Diff: src/compiler/opcodes.h

Issue 554763003: Couple of fixes to typer (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | src/compiler/typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index c4b7dbf2803075a72281d6d351a2a91a8b503d1a..722e1be96369fcc03acebb96f17f869a82aac9ea 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -6,11 +6,9 @@
#define V8_COMPILER_OPCODES_H_
// Opcodes for control operators.
-#define CONTROL_OP_LIST(V) \
- V(Start) \
+#define INNER_CONTROL_OP_LIST(V) \
V(Dead) \
V(Loop) \
- V(End) \
V(Branch) \
V(IfTrue) \
V(IfFalse) \
@@ -18,6 +16,11 @@
V(Return) \
V(Throw)
+#define CONTROL_OP_LIST(V) \
+ INNER_CONTROL_OP_LIST(V) \
+ V(Start) \
+ V(End)
+
// Opcodes for common operators.
#define LEAF_OP_LIST(V) \
V(Int32Constant) \
@@ -83,7 +86,8 @@
V(JSToName) \
V(JSToObject)
-#define JS_OTHER_UNOP_LIST(V) V(JSTypeOf)
+#define JS_OTHER_UNOP_LIST(V) \
+ V(JSTypeOf)
#define JS_SIMPLE_UNOP_LIST(V) \
JS_LOGIC_UNOP_LIST(V) \
« no previous file with comments | « no previous file | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698