| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index e898eb323dd508ab587208fcd25252cdd3e4ceb6..a23d37aefb836491cbdf44bf08ee2aac222e113d 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -117,14 +117,6 @@ class Typer::RunVisitor : public Typer::Visitor {
|
| : Visitor(typer, context),
|
| phis(NodeSet::key_compare(), NodeSet::allocator_type(typer->zone())) {}
|
|
|
| - GenericGraphVisit::Control Pre(Node* node) {
|
| - return NodeProperties::IsControl(node)
|
| - && node->opcode() != IrOpcode::kEnd
|
| - && node->opcode() != IrOpcode::kMerge
|
| - && node->opcode() != IrOpcode::kReturn
|
| - ? GenericGraphVisit::SKIP : GenericGraphVisit::CONTINUE;
|
| - }
|
| -
|
| GenericGraphVisit::Control Post(Node* node) {
|
| Bounds bounds = TypeNode(node);
|
| if (node->opcode() == IrOpcode::kPhi) {
|
|
|