aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-16 02:01:19 +0000
committerDan Gohman <gohman@apple.com>2010-07-16 02:01:19 +0000
commite667e0172346773cb5718f694efa93ea49114c7b (patch)
tree33584c74353466f00b424a3f3a6c97e528a3f556 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent48bf8f0c3ade7f55dedb6d0c2142f1e064a95668 (diff)
downloadexternal_llvm-e667e0172346773cb5718f694efa93ea49114c7b.zip
external_llvm-e667e0172346773cb5718f694efa93ea49114c7b.tar.gz
external_llvm-e667e0172346773cb5718f694efa93ea49114c7b.tar.bz2
Use the source-order scheduler instead of the "fast" scheduler at -O0,
because it's more likely to keep debug line information in its original order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108496 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 08ba548..6526134 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -132,7 +132,7 @@ namespace llvm {
const TargetLowering &TLI = IS->getTargetLowering();
if (OptLevel == CodeGenOpt::None)
- return createFastDAGScheduler(IS, OptLevel);
+ return createSourceListDAGScheduler(IS, OptLevel);
if (TLI.getSchedulingPreference() == Sched::Latency)
return createTDListDAGScheduler(IS, OptLevel);
if (TLI.getSchedulingPreference() == Sched::RegPressure)