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 | c57ed8b2980fd155b9e0048670a7423184921d34 (patch) | |
tree | ed661a59b218f317307e9e78da4848012774d3ca /tools/llvm-link | |
parent | c9bafdaa752db1cbfe0354fd50b1735187980cdb (diff) |
remove dead option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-link')
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index aceb90889b..b19213a6fa 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/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... // |