diff options
| author | Andrew Trick <atrick@apple.com> | 2011-03-06 00:03:32 +0000 |
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2011-03-06 00:03:32 +0000 |
| commit | dd01732e63c550a223bbad103242492c86600697 (patch) | |
| tree | 0c9282602fea8750cb88c281b3939d5858b0a4ed /llvm | |
| parent | 69d37125a98601b1d689baa6733a77129b25d386 (diff) | |
| download | bcm5719-llvm-dd01732e63c550a223bbad103242492c86600697.tar.gz bcm5719-llvm-dd01732e63c550a223bbad103242492c86600697.zip | |
Disable a couple of experimental heuristics to get the best results from the current implementation of -pre-RA-sched=list-ilp.
llvm-svn: 127113
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 1575e7b345e..f29de318dab 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp @@ -75,10 +75,10 @@ static cl::opt<bool> DisableSchedRegPressure( "disable-sched-reg-pressure", cl::Hidden, cl::init(false), cl::desc("Disable regpressure priority in sched=list-ilp")); static cl::opt<bool> DisableSchedLiveUses( - "disable-sched-live-uses", cl::Hidden, cl::init(false), + "disable-sched-live-uses", cl::Hidden, cl::init(true), cl::desc("Disable live use priority in sched=list-ilp")); static cl::opt<bool> DisableSchedStalls( - "disable-sched-stalls", cl::Hidden, cl::init(false), + "disable-sched-stalls", cl::Hidden, cl::init(true), cl::desc("Disable no-stall priority in sched=list-ilp")); static cl::opt<bool> DisableSchedCriticalPath( "disable-sched-critical-path", cl::Hidden, cl::init(false), |

