Index: src/compiler/verifier.cc |
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
index 4a887334a984522c2c03e0a63b03497be23e1d0b..f554dd7961f079927b5661ba952ee15bb9688cfb 100644 |
--- a/src/compiler/verifier.cc |
+++ b/src/compiler/verifier.cc |
@@ -490,6 +490,7 @@ void Verifier::Visitor::Check(Node* node) { |
} |
case IrOpcode::kStateValues: |
case IrOpcode::kTypedStateValues: |
+ case IrOpcode::kArgumentsObjectState: |
case IrOpcode::kObjectState: |
case IrOpcode::kTypedObjectState: |
// TODO(jarin): what are the constraints on these? |
@@ -680,6 +681,7 @@ void Verifier::Visitor::Check(Node* node) { |
// Type is Receiver. |
CheckTypeIs(node, Type::Receiver()); |
break; |
+ case IrOpcode::kJSCallForwardVarargs: |
case IrOpcode::kJSCallFunction: |
case IrOpcode::kJSCallFunctionWithSpread: |
case IrOpcode::kJSCallRuntime: |