From ad768d7a1a7f5ac922cb7587bf7a318a37b4516f Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 8 Nov 2004 17:35:34 +0000 Subject: [PATCH] Make writing compressed bytecode the default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17625 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bytecode/WriteBytecodePass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.34.1