diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-06 23:25:25 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-06 23:25:25 +0000 |
| commit | b611692487c09b8c5df2165eb313a6c3f08c70c6 (patch) | |
| tree | c0eb513cd3b2f381bc5bb4406a8e03523fda62be /llvm/lib | |
| parent | 8f18938d1c09e996199a1aa32314c637c4ee655e (diff) | |
| download | bcm5719-llvm-b611692487c09b8c5df2165eb313a6c3f08c70c6.tar.gz bcm5719-llvm-b611692487c09b8c5df2165eb313a6c3f08c70c6.zip | |
Changing command-line option formats to be more consistent with LLVM style.
llvm-svn: 7658
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/Sparc/Sparc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Sparc/Sparc.cpp b/llvm/lib/Target/Sparc/Sparc.cpp index 8a75642f119..4656d6d6a7f 100644 --- a/llvm/lib/Target/Sparc/Sparc.cpp +++ b/llvm/lib/Target/Sparc/Sparc.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> |

