diff options
-rw-r--r-- | lib/Target/X86/X86RegisterInfo.cpp | 2 | ||||
-rw-r--r-- | lib/Target/X86/X86TargetMachine.cpp | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/2002-12-23-LocalRAProblem.llx | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/2002-12-23-SubProblem.llx | 2 | ||||
-rw-r--r-- | test/Jello/Makefile | 2 | ||||
-rw-r--r-- | tools/opt/opt.cpp | 5 |
6 files changed, 8 insertions, 7 deletions
diff --git a/lib/Target/X86/X86RegisterInfo.cpp b/lib/Target/X86/X86RegisterInfo.cpp index 617c2d1..12592c4 100644 --- a/lib/Target/X86/X86RegisterInfo.cpp +++ b/lib/Target/X86/X86RegisterInfo.cpp @@ -19,7 +19,7 @@ namespace { cl::opt<bool> - NoFPElim("no-fp-elim", + NoFPElim("disable-fp-elim", cl::desc("Disable frame pointer elimination optimization")); } diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index c578ba8..5015a96 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -15,7 +15,7 @@ #include <iostream> namespace { - cl::opt<bool> NoLocalRA("no-local-ra", + cl::opt<bool> NoLocalRA("disable-local-ra", cl::desc("Use Simple RA instead of Local RegAlloc")); cl::opt<bool> PrintCode("print-machineinstrs", cl::desc("Print generated machine code")); diff --git a/test/CodeGen/X86/2002-12-23-LocalRAProblem.llx b/test/CodeGen/X86/2002-12-23-LocalRAProblem.llx index 28e5dbd..a049bc9 100644 --- a/test/CodeGen/X86/2002-12-23-LocalRAProblem.llx +++ b/test/CodeGen/X86/2002-12-23-LocalRAProblem.llx @@ -1,4 +1,4 @@ -; RUN: as < %s | lli -force-interpreter=false -no-local-ra=false +; RUN: as < %s | lli -force-interpreter=false -disable-local-ra=false ;-print-machineinstrs int %main() { diff --git a/test/CodeGen/X86/2002-12-23-SubProblem.llx b/test/CodeGen/X86/2002-12-23-SubProblem.llx index fce528e..394f9ab 100644 --- a/test/CodeGen/X86/2002-12-23-SubProblem.llx +++ b/test/CodeGen/X86/2002-12-23-SubProblem.llx @@ -1,4 +1,4 @@ -; RUN: as < %s | lli -force-interpreter=false -no-local-ra +; RUN: as < %s | lli -force-interpreter=false -disable-local-ra int %main(int %B) { ;%B = add int 0, 1 diff --git a/test/Jello/Makefile b/test/Jello/Makefile index bb7c8ec..408f80a 100644 --- a/test/Jello/Makefile +++ b/test/Jello/Makefile @@ -13,7 +13,7 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.out)) LLI_FLAGS = -force-interpreter=false ifdef DISABLE_FP_ELIM -LLI_FLAGS += -no-fp-elim +LLI_FLAGS += -disable-fp-elim endif Output/%.out: Output/%.bc $(LLI) diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 74c30d1..803f4c6 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -48,10 +48,11 @@ static cl::opt<bool> PrintEachXForm("p", cl::desc("Print module after each transformation")); static cl::opt<bool> -NoOutput("no-output", cl::desc("Do not write result bytecode file"), cl::Hidden); +NoOutput("disable-output", + cl::desc("Do not write result bytecode file"), cl::Hidden); static cl::opt<bool> -NoVerify("no-verify", cl::desc("Do not verify result module"), cl::Hidden); +NoVerify("disable-verify", cl::desc("Do not verify result module"), cl::Hidden); static cl::opt<bool> Quiet("q", cl::desc("Don't print 'program modified' message")); |