mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
Change if-cvt options to something that actually as useable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107121 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f2b25451b
commit
c170f66742
@ -29,12 +29,14 @@
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<unsigned>
|
||||
IfCvtLimit("thumb2-ifcvt-limit (default 3)",
|
||||
cl::Hidden, cl::init(3));
|
||||
IfCvtLimit("thumb2-ifcvt-limit", cl::Hidden,
|
||||
cl::desc("Thumb2 if-conversion limit (default 3)"),
|
||||
cl::init(3));
|
||||
|
||||
static cl::opt<unsigned>
|
||||
IfCvtDiamondLimit("thumb2-ifcvt-diamond-limit (default 3)",
|
||||
cl::Hidden, cl::init(3));
|
||||
IfCvtDiamondLimit("thumb2-ifcvt-diamond-limit", cl::Hidden,
|
||||
cl::desc("Thumb2 diamond if-conversion limit (default 3)"),
|
||||
cl::init(3));
|
||||
|
||||
Thumb2InstrInfo::Thumb2InstrInfo(const ARMSubtarget &STI)
|
||||
: ARMBaseInstrInfo(STI), RI(*this, STI) {
|
||||
|
Loading…
Reference in New Issue
Block a user