From: Reid Spencer Date: Mon, 8 Nov 2004 17:35:34 +0000 (+0000) Subject: Make writing compressed bytecode the default. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ad768d7a1a7f5ac922cb7587bf7a318a37b4516f;p=oota-llvm.git Make writing compressed bytecode the default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17625 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h index 8a061d298a7..387bd0a9ba7 100644 --- a/include/llvm/Bytecode/WriteBytecodePass.h +++ b/include/llvm/Bytecode/WriteBytecodePass.h @@ -28,7 +28,7 @@ class WriteBytecodePass : public ModulePass { public: WriteBytecodePass() : Out(&std::cout), DeleteStream(false), CompressFile(true) {} - WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = false ) + WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = true ) : Out(o), DeleteStream(DS), CompressFile(CF) {} inline ~WriteBytecodePass() {