diff options
-rw-r--r-- | lib/Target/SparcV9/SparcV9TargetMachine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index 8a75642f11..4656d6d6a7 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -38,13 +38,13 @@ const TargetInstrDescriptor SparcMachineInstrDesc[] = { // Command line options to control choice of code generation passes. //--------------------------------------------------------------------------- -static cl::opt<bool> DisablePreOpt("nopreopt", +static cl::opt<bool> DisablePreOpt("disable-preopt", cl::desc("Disable optimizations prior to instruction selection")); -static cl::opt<bool> DisableSched("nosched", +static cl::opt<bool> DisableSched("disable-sched", cl::desc("Disable local scheduling pass")); -static cl::opt<bool> DisablePeephole("nopeephole", +static cl::opt<bool> DisablePeephole("disable-peephole", cl::desc("Disable peephole optimization pass")); static cl::opt<bool> |