Skip to content

Commit

Permalink
Changing command-line option formats to be more consistent with LLVM …
Browse files Browse the repository at this point in the history
…style.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7658 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
mbrukman committed Aug 6, 2003
1 parent 58ba50f commit fe8a796
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Target/SparcV9/SparcV9TargetMachine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit fe8a796

Please sign in to comment.