Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index a3fe262258830fc2730f455c1d1ccdd76eea40d1..197f10058f3278d7f2d5e3b702ce0608387bbe60 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -647,8 +647,7 @@ struct EarlyControlReductionPhase { |
void Run(PipelineData* data, Zone* temp_zone) { |
SourcePositionTable::Scope pos(data->source_positions(), |
SourcePosition::Unknown()); |
- // TODO(turbofan): enable select matching in early control reduction. |
- ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), data->common(), 0); |
+ ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), 0); |
} |
}; |
@@ -658,7 +657,7 @@ struct LateControlReductionPhase { |
void Run(PipelineData* data, Zone* temp_zone) { |
SourcePositionTable::Scope pos(data->source_positions(), |
SourcePosition::Unknown()); |
- ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), data->common(), 0); |
+ ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), 0); |
} |
}; |