Index: src/compiler/verifier.cc |
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
index 94d701a138afc5711ff10e8ff02448242134eeaf..b30b72786b9beaf574dd09d2bd0ec4ebf888cf09 100644 |
--- a/src/compiler/verifier.cc |
+++ b/src/compiler/verifier.cc |
@@ -460,7 +460,7 @@ void Verifier::Visitor::Pre(Node* node) { |
case IrOpcode::kJSCreateWithContext: |
case IrOpcode::kJSCreateBlockContext: |
case IrOpcode::kJSCreateModuleContext: |
- case IrOpcode::kJSCreateGlobalContext: { |
+ case IrOpcode::kJSCreateScriptContext: { |
// Type is Context, and operand is Internal. |
Node* context = NodeProperties::GetContextInput(node); |
// TODO(rossberg): This should really be Is(Internal), but the typer |