mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
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
This commit is contained in:
parent
88b0c6a59a
commit
3c6e49504e
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user