| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index 622ca7beb947ee0bf1151f58bb3286323f622582..5d9676ee16e85828cc4c965c7a115afafed3e0b4 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -777,6 +777,7 @@ struct InliningPhase {
|
| JSGraphReducer graph_reducer(data->jsgraph(), temp_zone);
|
| DeadCodeElimination dead_code_elimination(&graph_reducer, data->graph(),
|
| data->common());
|
| + CheckpointElimination checkpoint_elimination(&graph_reducer);
|
| CommonOperatorReducer common_reducer(&graph_reducer, data->graph(),
|
| data->common(), data->machine());
|
| JSCallReducer::Flags call_reducer_flags = JSCallReducer::kNoFlags;
|
| @@ -818,6 +819,7 @@ struct InliningPhase {
|
| ? JSIntrinsicLowering::kDeoptimizationEnabled
|
| : JSIntrinsicLowering::kDeoptimizationDisabled);
|
| AddReducer(data, &graph_reducer, &dead_code_elimination);
|
| + AddReducer(data, &graph_reducer, &checkpoint_elimination);
|
| AddReducer(data, &graph_reducer, &common_reducer);
|
| if (data->info()->is_frame_specializing()) {
|
| AddReducer(data, &graph_reducer, &frame_specialization);
|
|
|