Index: src/compiler/verifier.cc |
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
index 81f04dc2d887e86cb44bd58e8034bbaf03de466f..3b898ef8af24f1282d1466c4e74f58161077f5c0 100644 |
--- a/src/compiler/verifier.cc |
+++ b/src/compiler/verifier.cc |
@@ -511,6 +511,10 @@ void Verifier::Visitor::Check(Node* node) { |
// Type is OtherObject. |
CheckUpperIs(node, Type::OtherObject()); |
break; |
+ case IrOpcode::kJSCreateArray: |
+ // Type is OtherObject. |
+ CheckUpperIs(node, Type::OtherObject()); |
+ break; |
case IrOpcode::kJSCreateClosure: |
// Type is Function. |
CheckUpperIs(node, Type::OtherObject()); |
@@ -545,6 +549,7 @@ void Verifier::Visitor::Check(Node* node) { |
case IrOpcode::kJSLoadContext: |
case IrOpcode::kJSLoadDynamic: |
+ case IrOpcode::kJSLoadNativeContext: |
// Type can be anything. |
CheckUpperIs(node, Type::Any()); |
break; |