| 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) \
|
|
|