| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index ffba4cac6063a5d1fe07ff145d09080225aaf610..b502621d506974ac04f5f8bb434ca1322e457260 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -282,6 +282,10 @@ void Verifier::Visitor::Check(Node* node) {
|
| // Type is empty.
|
| CheckNotTyped(node);
|
| break;
|
| + case IrOpcode::kDeoptimize:
|
| + // TODO(rossberg): check successor is End
|
| + // Type is empty.
|
| + CheckNotTyped(node);
|
| case IrOpcode::kReturn:
|
| // TODO(rossberg): check successor is End
|
| // Type is empty.
|
|
|