diff options
Diffstat (limited to 'deps/v8/src/compiler/operator-properties.cc')
-rw-r--r-- | deps/v8/src/compiler/operator-properties.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deps/v8/src/compiler/operator-properties.cc b/deps/v8/src/compiler/operator-properties.cc index 0a9e6448e2..02b2f64a30 100644 --- a/deps/v8/src/compiler/operator-properties.cc +++ b/deps/v8/src/compiler/operator-properties.cc @@ -78,6 +78,7 @@ bool OperatorProperties::HasFrameStateInput(const Operator* op) { case IrOpcode::kJSStoreProperty: case IrOpcode::kJSLoadGlobal: case IrOpcode::kJSStoreGlobal: + case IrOpcode::kJSStoreDataPropertyInLiteral: case IrOpcode::kJSDeleteProperty: // Context operations @@ -93,6 +94,7 @@ bool OperatorProperties::HasFrameStateInput(const Operator* op) { // Call operations case IrOpcode::kJSCallConstruct: + case IrOpcode::kJSCallConstructWithSpread: case IrOpcode::kJSCallFunction: // Misc operations @@ -100,6 +102,7 @@ bool OperatorProperties::HasFrameStateInput(const Operator* op) { case IrOpcode::kJSForInNext: case IrOpcode::kJSForInPrepare: case IrOpcode::kJSStackCheck: + case IrOpcode::kJSGetSuperConstructor: return true; default: |