Index: src/compiler/verifier.cc |
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc |
index 733f8d7455d7e6302bb4120b2aa90ade18b95215..238de2f23e59bfedcfd6cd06307276e1a0c9f456 100644 |
--- a/src/compiler/verifier.cc |
+++ b/src/compiler/verifier.cc |
@@ -496,6 +496,11 @@ void Verifier::Visitor::Check(Node* node) { |
// Type is Function. |
CheckUpperIs(node, Type::OtherObject()); |
break; |
+ case IrOpcode::kJSCreateLiteralArray: |
+ case IrOpcode::kJSCreateLiteralObject: |
+ // Type is OtherObject. |
+ CheckUpperIs(node, Type::OtherObject()); |
+ break; |
case IrOpcode::kJSLoadProperty: |
case IrOpcode::kJSLoadNamed: |
// Type can be anything. |