Index: src/compiler/operator-properties.cc |
diff --git a/src/compiler/operator-properties.cc b/src/compiler/operator-properties.cc |
index 98fb0706d452d38761e7e954fe2408036502a903..7f8a2b3852948eba16c3fb314136b929254e5d44 100644 |
--- a/src/compiler/operator-properties.cc |
+++ b/src/compiler/operator-properties.cc |
@@ -54,7 +54,7 @@ int OperatorProperties::GetFrameStateInputCount(const Operator* op) { |
case IrOpcode::kJSCreateLiteralObject: |
// Context operations |
- case IrOpcode::kJSLoadDynamicContext: |
+ case IrOpcode::kJSLoadDynamic: |
case IrOpcode::kJSCreateScriptContext: |
case IrOpcode::kJSCreateWithContext: |
@@ -79,7 +79,6 @@ int OperatorProperties::GetFrameStateInputCount(const Operator* op) { |
case IrOpcode::kJSStoreProperty: |
case IrOpcode::kJSLoadGlobal: |
case IrOpcode::kJSStoreGlobal: |
- case IrOpcode::kJSLoadDynamicGlobal: |
return 2; |
// Binary operators that can deopt in the middle the operation (e.g., |