Index: src/compiler/opcodes.h |
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h |
index 5077e0aaf38f7174da57b3a5054b98919336f85d..de2e9edf6d4cc4915ebc2f278a7c46165a155348 100644 |
--- a/src/compiler/opcodes.h |
+++ b/src/compiler/opcodes.h |
@@ -162,8 +162,8 @@ |
V(JSConstruct) \ |
V(JSConstructWithSpread) \ |
V(JSCallForwardVarargs) \ |
- V(JSCallFunction) \ |
- V(JSCallFunctionWithSpread) \ |
+ V(JSCall) \ |
+ V(JSCallWithSpread) \ |
V(JSCallRuntime) \ |
V(JSConvertReceiver) \ |
V(JSForInNext) \ |
@@ -800,7 +800,7 @@ class V8_EXPORT_PRIVATE IrOpcode { |
// Returns true if opcode can be inlined. |
static bool IsInlineeOpcode(Value value) { |
- return value == kJSConstruct || value == kJSCallFunction; |
+ return value == kJSConstruct || value == kJSCall; |
} |
// Returns true if opcode for comparison operator. |