| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 2aa18699dda81545bab87292ba373c6e8d538dab..6a0127e608b680537bf7be1b2d51b7febcfaee74 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -267,6 +267,14 @@ Bounds Typer::Visitor::TypeEffectPhi(Node* node) {
|
| }
|
|
|
|
|
| +Bounds Typer::Visitor::TypeControlEffect(Node* node) {
|
| + return Bounds(Type::None(zone()));
|
| +}
|
| +
|
| +
|
| +Bounds Typer::Visitor::TypeFinish(Node* node) { return OperandType(node, 0); }
|
| +
|
| +
|
| Bounds Typer::Visitor::TypeFrameState(Node* node) {
|
| return Bounds(Type::None(zone()));
|
| }
|
|
|