remove dead option
authorChris Lattner <sabre@nondot.org>
Sun, 6 May 2007 23:24:42 +0000 (23:24 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 May 2007 23:24:42 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36898 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandGuide/llvm-ld.pod
tools/llvm-link/llvm-link.cpp

index 5f2e065231cdfcaa68e42b955c53f0923b4a6b51..920818822a046cefe68c557b72030ff234e82976 100644 (file)
@@ -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
index aceb90889b93a54441672f92e8835ff67f32d2d0..b19213a6fa507a187d0c23c3ee64b5be63b3f8e9 100644 (file)
@@ -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...
 //