forked from OSchip/llvm-project
parent
ce29331e10
commit
ad7c6124e7
|
@ -53,7 +53,8 @@ static cl::opt<bool> DisableReMat("disable-rematerialization",
|
||||||
static cl::opt<bool> EnableFastSpilling("fast-spill",
|
static cl::opt<bool> EnableFastSpilling("fast-spill",
|
||||||
cl::init(false), cl::Hidden);
|
cl::init(false), cl::Hidden);
|
||||||
|
|
||||||
static cl::opt<bool> EarlyCoalescing("early-coalescing", cl::init(false));
|
static cl::opt<bool> EarlyCoalescing("early-coalescing",
|
||||||
|
cl::init(false), cl::Hidden);
|
||||||
|
|
||||||
static cl::opt<int> CoalescingLimit("early-coalescing-limit",
|
static cl::opt<int> CoalescingLimit("early-coalescing-limit",
|
||||||
cl::init(-1), cl::Hidden);
|
cl::init(-1), cl::Hidden);
|
||||||
|
|
|
@ -68,7 +68,7 @@ static cl::opt<bool>
|
||||||
EnableFastISelAbort("fast-isel-abort", cl::Hidden,
|
EnableFastISelAbort("fast-isel-abort", cl::Hidden,
|
||||||
cl::desc("Enable abort calls when \"fast\" instruction fails"));
|
cl::desc("Enable abort calls when \"fast\" instruction fails"));
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
SchedLiveInCopies("schedule-livein-copies",
|
SchedLiveInCopies("schedule-livein-copies", cl::Hidden,
|
||||||
cl::desc("Schedule copies of livein registers"),
|
cl::desc("Schedule copies of livein registers"),
|
||||||
cl::init(false));
|
cl::init(false));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue