Add a --disable-compression option like llvm-link/llvm-as etc have

llvm-svn: 29941
This commit is contained in:
Chris Lattner 2006-08-28 17:31:55 +00:00
parent 16c203e7c6
commit 29619a9a01
1 changed files with 3 additions and 1 deletions

View File

@ -38,6 +38,8 @@ using namespace llvm;
static cl::list<const PassInfo*, bool, PassNameParser>
PassList(cl::desc("Optimizations available:"));
static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
cl::desc("Don't compress the generated bytecode"));
// Other command line options...
//
@ -250,7 +252,7 @@ int main(int argc, char **argv) {
// Write bytecode out to disk or cout as the last step...
if (!NoOutput && !AnalyzeOnly)
Passes.add(new WriteBytecodePass(Out, Out != &std::cout));
Passes.add(new WriteBytecodePass(Out, Out != &std::cout, !NoCompress));
// Now that we have all of the passes ready, run them.
Passes.run(*M.get());