summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-08-06 23:25:25 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-08-06 23:25:25 +0000
commitfe8a7968330b3ca6fc26a96a6ffbdf4c6cc15633 (patch)
treee989548fa77270f546408b6051eea37bb1ab56ff
parent58ba50fea7d8a42c878cb8dc5f46303c5c92a58f (diff)
downloadllvm-fe8a7968330b3ca6fc26a96a6ffbdf4c6cc15633.tar.gz
llvm-fe8a7968330b3ca6fc26a96a6ffbdf4c6cc15633.tar.bz2
llvm-fe8a7968330b3ca6fc26a96a6ffbdf4c6cc15633.tar.xz
Changing command-line option formats to be more consistent with LLVM style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7658 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9TargetMachine.cpp6
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>