| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index b5e956b12bcba388c962ce575d2d500cc3e30599..7bdc8ddf5199278b4224b1e4d8d99f05a46af9b1 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -579,6 +579,10 @@ void Verifier::Visitor::Check(Node* node) {
|
| // Type is OtherObject.
|
| CheckTypeIs(node, Type::OtherObject());
|
| break;
|
| + case IrOpcode::kJSCreateKeyValueArray:
|
| + // Type is OtherObject.
|
| + CheckTypeIs(node, Type::OtherObject());
|
| + break;
|
| case IrOpcode::kJSCreateLiteralArray:
|
| case IrOpcode::kJSCreateLiteralObject:
|
| case IrOpcode::kJSCreateLiteralRegExp:
|
|
|