| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index 86b7521198fda1ebd27dc9451f4c8742cca65039..0768ece2a3915da3b43574cb20e05dcb96a099a0 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -618,10 +618,6 @@ void Verifier::Visitor::Check(Node* node) {
|
| case IrOpcode::kReferenceEqual: {
|
| // (Unique, Any) -> Boolean and
|
| // (Any, Unique) -> Boolean
|
| - if (typing == TYPED) {
|
| - CHECK(bounds(ValueInput(node, 0)).upper->Is(Type::Unique()) ||
|
| - bounds(ValueInput(node, 1)).upper->Is(Type::Unique()));
|
| - }
|
| CheckUpperIs(node, Type::Boolean());
|
| break;
|
| }
|
|
|