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 | 3c6e49504e9a57a4818750fd2520967f84634eac (patch) | |
tree | 18502fe3c4a8ab7740022eedd15ceebb3a8fb0b3 | |
parent | 88b0c6a59a54a2d7b3763dfabb595ce0e09e658a (diff) |
Disable a couple of experimental heuristics to get the best results from the current implementation of -pre-RA-sched=list-ilp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127113 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp index 1575e7b345..f29de318da 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp +++ b/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), |