aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode/WriteBytecodePass.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-21 06:34:18 +0000
committerChris Lattner <sabre@nondot.org>2007-01-21 06:34:18 +0000
commit17be6791b8b22b36850340a44a6f05de5c3cbf85 (patch)
treee93138f9dfc08cc733f7254d7f92c2635d87e627 /include/llvm/Bytecode/WriteBytecodePass.h
parent9b5b182e5f897b559fde4a20290f017ddc43162c (diff)
default to emiting an uncompressed .bc file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33420 91177308-0d34-0410-b5e6-96231b3b80d8
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 c4e2c5d5d5..b0155e4ddf 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() {