diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc index 6fb656851d..70d4be6033 100644 --- a/src/compiler/pipeline.cc +++ b/src/compiler/pipeline.cc @@ -640,7 +640,7 @@ struct ChangeLoweringPhase { struct EarlyControlReductionPhase { static const char* phase_name() { return "early control reduction"; } void Run(PipelineData* data, Zone* temp_zone) { - ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), 1); + ControlReducer::ReduceGraph(temp_zone, data->jsgraph(), 0); } };