| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index 5c4d607e09c18a81631c0c6519a49f58148e574c..eafe3230637ff9047049750205b96f1a5885a33a 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -502,10 +502,6 @@ PipelineCompilationJob::Status PipelineCompilationJob::CreateGraphImpl() {
|
| if (!info()->shared_info()->asm_function() || FLAG_turbo_asm_deoptimization) {
|
| info()->MarkAsDeoptimizationEnabled();
|
| }
|
| - if (!info()->shared_info()->asm_function()) {
|
| - info()->MarkAsEffectSchedulingEnabled();
|
| - }
|
| -
|
| if (!info()->shared_info()->HasBytecodeArray()) {
|
| if (!Compiler::EnsureDeoptimizationSupport(info())) return FAILED;
|
| }
|
| @@ -1283,10 +1279,8 @@ Handle<Code> Pipeline::GenerateCode() {
|
| Run<EarlyOptimizationPhase>();
|
| RunPrintAndVerify("Early optimized");
|
|
|
| - if (info()->is_effect_scheduling_enabled()) {
|
| - Run<EffectControlLinearizationPhase>();
|
| - RunPrintAndVerify("Effect and control linearized");
|
| - }
|
| + Run<EffectControlLinearizationPhase>();
|
| + RunPrintAndVerify("Effect and control linearized");
|
|
|
| Run<BranchEliminationPhase>();
|
| RunPrintAndVerify("Branch conditions eliminated");
|
|
|