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 | |
parent | c9bafdaa752db1cbfe0354fd50b1735187980cdb (diff) |
remove dead option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36898 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/CommandGuide/llvm-ld.pod | 4 | ||||
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/docs/CommandGuide/llvm-ld.pod b/docs/CommandGuide/llvm-ld.pod index 5f2e065231..920818822a 100644 --- a/docs/CommandGuide/llvm-ld.pod +++ b/docs/CommandGuide/llvm-ld.pod @@ -153,10 +153,6 @@ This option is identical to the B<-native> option, but uses the C backend to generate code for the program instead of an LLVM native code generator. -=item B<-disable-compression> - -Do not compress bytecode files. - =back =head2 Optimization Options 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... // |