Index: src/compiler/opcodes.h |
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h |
index ef097d40d449b0ac7e0cb8714ff733548dc366cb..8a32a7fc59b8d5360ed02efdba487a462c7df372 100644 |
--- a/src/compiler/opcodes.h |
+++ b/src/compiler/opcodes.h |
@@ -159,8 +159,8 @@ |
V(JSCreateScriptContext) |
#define JS_OTHER_OP_LIST(V) \ |
- V(JSCallConstruct) \ |
- V(JSCallConstructWithSpread) \ |
+ V(JSConstruct) \ |
+ V(JSConstructWithSpread) \ |
V(JSCallForwardVarargs) \ |
V(JSCallFunction) \ |
V(JSCallFunctionWithSpread) \ |
@@ -799,7 +799,7 @@ class V8_EXPORT_PRIVATE IrOpcode { |
// Returns true if opcode can be inlined. |
static bool IsInlineeOpcode(Value value) { |
- return value == kJSCallConstruct || value == kJSCallFunction; |
+ return value == kJSConstruct || value == kJSCallFunction; |
} |
// Returns true if opcode for comparison operator. |