Rename -no-* to -disable-*
authorChris Lattner <sabre@nondot.org>
Wed, 26 Feb 2003 20:00:41 +0000 (20:00 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 26 Feb 2003 20:00:41 +0000 (20:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5642 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86RegisterInfo.cpp
lib/Target/X86/X86TargetMachine.cpp
test/CodeGen/X86/2002-12-23-LocalRAProblem.llx
test/CodeGen/X86/2002-12-23-SubProblem.llx
test/Jello/Makefile
tools/opt/opt.cpp

index 617c2d1efa7c578b3499985e5cc61d97a2bfcc2d..12592c471764cea2068a5c9e12398785234224d8 100644 (file)
@@ -19,7 +19,7 @@
 
 namespace {
   cl::opt<bool>
-  NoFPElim("no-fp-elim",
+  NoFPElim("disable-fp-elim",
           cl::desc("Disable frame pointer elimination optimization"));
 }
 
index c578ba83a67d1fb9bd35734bddafb5739309efc1..5015a9605b392d6775decf644c4e29f130aee7e3 100644 (file)
@@ -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"));
index 28e5dbdc12754b8ace1bbf3ced395e7f30978d65..a049bc96d0e06b35e955bee6bb2a4b9b6062df3d 100644 (file)
@@ -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() {
index fce528e9aaa1f724289e5868088162d14a75deda..394f9ab3f67201b0653e683a4c21a4679de2d184 100644 (file)
@@ -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
index bb7c8ec53c4b5d099797a5a55e2cff3c032fa500..408f80af3c1e8e24268e41ede0a8a687dd7f7629 100644 (file)
@@ -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)
index 74c30d120046cc419f9d2b129c4f1cbf9bcc755c..803f4c6993198ec5c38cb394f06a0b2cb80e07ff 100644 (file)
@@ -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"));