Index: src/compiler/pipeline.cc |
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc |
index 211ef11c42a8a9901a5634e7c248fc3148f44bc5..fccee4f640013a62dce21027c2fc9c2d186278ef 100644 |
--- a/src/compiler/pipeline.cc |
+++ b/src/compiler/pipeline.cc |
@@ -26,7 +26,6 @@ |
#include "src/compiler/graph-replay.h" |
#include "src/compiler/graph-trimmer.h" |
#include "src/compiler/graph-visualizer.h" |
-#include "src/compiler/greedy-allocator.h" |
#include "src/compiler/instruction-selector.h" |
#include "src/compiler/instruction.h" |
#include "src/compiler/js-builtin-reducer.h" |
@@ -1766,13 +1765,8 @@ void PipelineImpl::AllocateRegisters(const RegisterConfiguration* config, |
Run<SplinterLiveRangesPhase>(); |
} |
- if (FLAG_turbo_greedy_regalloc) { |
- Run<AllocateGeneralRegistersPhase<GreedyAllocator>>(); |
- Run<AllocateFPRegistersPhase<GreedyAllocator>>(); |
- } else { |
- Run<AllocateGeneralRegistersPhase<LinearScanAllocator>>(); |
- Run<AllocateFPRegistersPhase<LinearScanAllocator>>(); |
- } |
+ Run<AllocateGeneralRegistersPhase<LinearScanAllocator>>(); |
+ Run<AllocateFPRegistersPhase<LinearScanAllocator>>(); |
if (FLAG_turbo_preprocess_ranges) { |
Run<MergeSplintersPhase>(); |