Chromium Code Reviews| Index: src/compiler/typer.cc |
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
| index 6a0127e608b680537bf7be1b2d51b7febcfaee74..73fe41d58291ff3dfbe0637b6dcc7c103b0041e9 100644 |
| --- a/src/compiler/typer.cc |
| +++ b/src/compiler/typer.cc |
| @@ -272,6 +272,11 @@ Bounds Typer::Visitor::TypeControlEffect(Node* node) { |
| } |
| +Bounds Typer::Visitor::TypeValueEffect(Node* node) { |
| + return Bounds(Type::None(zone())); |
| +} |
| + |
| + |
| Bounds Typer::Visitor::TypeFinish(Node* node) { return OperandType(node, 0); } |