Rename the option for defeating compression to be a little more specific.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 7 Nov 2004 05:50:16 +0000 (05:50 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 7 Nov 2004 05:50:16 +0000 (05:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17567 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-as/llvm-as.cpp
tools/llvm-link/llvm-link.cpp

index 9ea24f3f700b661fd7c84bd0463640ed453931fd..acfe1756b5000808144f1ca6e84959e90f599447 100644 (file)
@@ -40,7 +40,7 @@ Force("f", cl::desc("Overwrite output files"));
 static cl::opt<bool>
 DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden);
 
-static cl::opt<bool> NoCompress("no-compress", cl::init(false),
+static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
        cl::desc("Don't ompress the generated bytecode"));
 
 static cl::opt<bool>
index a07cd4bf80a0fc0e725766f5ee3a3264ce3da56f..7de3ba118a44cb25c0dc4eb1a861f100495e291e 100644 (file)
@@ -42,7 +42,7 @@ Verbose("v", cl::desc("Print information about actions taken"));
 static cl::opt<bool>
 DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden);
 
-static cl::opt<bool> NoCompress("no-compress", cl::init(false),
+static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
        cl::desc("Don't ompress the generated bytecode"));
 
 // LoadFile - Read the specified bytecode file in and return it.  This routine