mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Rename -no-* to -disable-*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5642 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8dcd17c938
commit
ddd5b417c6
@ -19,7 +19,7 @@
|
||||
|
||||
namespace {
|
||||
cl::opt<bool>
|
||||
NoFPElim("no-fp-elim",
|
||||
NoFPElim("disable-fp-elim",
|
||||
cl::desc("Disable frame pointer elimination optimization"));
|
||||
}
|
||||
|
||||
|
@ -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"));
|
||||
|
@ -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() {
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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"));
|
||||
|
Loading…
Reference in New Issue
Block a user