From: Reid Spencer Date: Sun, 7 Nov 2004 05:50:16 +0000 (+0000) Subject: Rename the option for defeating compression to be a little more specific. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4b5fdc71c91119793fed5cb69a520823d9d80f6a;p=oota-llvm.git Rename the option for defeating compression to be a little more specific. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17567 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp index 9ea24f3f700..acfe1756b50 100644 --- a/tools/llvm-as/llvm-as.cpp +++ b/tools/llvm-as/llvm-as.cpp @@ -40,7 +40,7 @@ Force("f", cl::desc("Overwrite output files")); static cl::opt DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden); -static cl::opt NoCompress("no-compress", cl::init(false), +static cl::opt NoCompress("disable-compression", cl::init(false), cl::desc("Don't ompress the generated bytecode")); static cl::opt diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index a07cd4bf80a..7de3ba118a4 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -42,7 +42,7 @@ Verbose("v", cl::desc("Print information about actions taken")); static cl::opt DumpAsm("d", cl::desc("Print assembly as linked"), cl::Hidden); -static cl::opt NoCompress("no-compress", cl::init(false), +static cl::opt 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