diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-06 23:24:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-06 23:24:42 +0000 |
commit | 05be1d44da49f743c80d36c45a9515641824c318 (patch) | |
tree | 33cc5937b224141e80528d4361152e3b6ecf76db /llvm/tools | |
parent | 7feb9c17faee30db1eadc595fdc8c125faf00217 (diff) | |
download | bcm5719-llvm-05be1d44da49f743c80d36c45a9515641824c318.tar.gz bcm5719-llvm-05be1d44da49f743c80d36c45a9515641824c318.zip |
remove dead option
llvm-svn: 36898
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-link/llvm-link.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/tools/llvm-link/llvm-link.cpp b/llvm/tools/llvm-link/llvm-link.cpp index aceb90889b9..b19213a6fa5 100644 --- a/llvm/tools/llvm-link/llvm-link.cpp +++ b/llvm/tools/llvm-link/llvm-link.cpp @@ -42,9 +42,6 @@ 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("disable-compression", cl::init(true), - cl::desc("Don't compress the generated bytecode")); - // LoadFile - Read the specified bytecode file in and return it. This routine // searches the link path for the specified file to try to find it... // |