Disable a couple of experimental heuristics to get the best results from the current...
authorAndrew Trick <atrick@apple.com>
Sun, 6 Mar 2011 00:03:32 +0000 (00:03 +0000)
committerAndrew Trick <atrick@apple.com>
Sun, 6 Mar 2011 00:03:32 +0000 (00:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127113 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp

index 1575e7b345e6e527120d58007d7004d4a8475005..f29de318dab689e74b967567dd632e91d9c2ff44 100644 (file)
@@ -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),