diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-07 05:50:16 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-07 05:50:16 +0000 |
commit | 4b5fdc71c91119793fed5cb69a520823d9d80f6a (patch) | |
tree | 1aacfe8ded4d6f88d2f430b7f5060a9b0ddd1f58 /tools/llvm-link/llvm-link.cpp | |
parent | 34b9071a3da37e5c8e42dfb6f5610260f4c87b22 (diff) |
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
Diffstat (limited to 'tools/llvm-link/llvm-link.cpp')
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index a07cd4bf80..7de3ba118a 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<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 |