| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index f2cf50f3f1666d834060d2b46429eb652db5a8f9..bee12a073073f458cb324c8c92db0d304c1fcc69 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -939,12 +939,8 @@ struct RepresentationSelectionPhase {
|
| static const char* phase_name() { return "representation selection"; }
|
|
|
| void Run(PipelineData* data, Zone* temp_zone) {
|
| - SimplifiedLowering::Flags flags =
|
| - data->info()->is_type_feedback_enabled()
|
| - ? SimplifiedLowering::kTypeFeedbackEnabled
|
| - : SimplifiedLowering::kNoFlag;
|
| SimplifiedLowering lowering(data->jsgraph(), temp_zone,
|
| - data->source_positions(), flags);
|
| + data->source_positions());
|
| lowering.LowerAllNodes();
|
| }
|
| };
|
|
|