aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bytecode/WriteBytecodePass.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Bytecode/WriteBytecodePass.h')
-rw-r--r--include/llvm/Bytecode/WriteBytecodePass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h
index c4e2c5d..b0155e4 100644
--- a/include/llvm/Bytecode/WriteBytecodePass.h
+++ b/include/llvm/Bytecode/WriteBytecodePass.h
@@ -27,8 +27,8 @@ class WriteBytecodePass : public ModulePass {
bool CompressFile;
public:
WriteBytecodePass()
- : Out(&cout), DeleteStream(false), CompressFile(true) {}
- WriteBytecodePass(OStream *o, bool DS = false, bool CF = true)
+ : Out(&cout), DeleteStream(false), CompressFile(false) {}
+ WriteBytecodePass(OStream *o, bool DS = false, bool CF = false)
: Out(o), DeleteStream(DS), CompressFile(CF) {}
inline ~WriteBytecodePass() {