aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-08 17:35:34 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-08 17:35:34 +0000
commitad768d7a1a7f5ac922cb7587bf7a318a37b4516f (patch)
tree1f8f4c964d3b8afcdd6de4ac0fd0c58931fb49e8 /include/llvm/Bytecode
parentcceed9fc770e1501540f81b8dce5dfd83421a7ca (diff)
Make writing compressed bytecode the default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r--include/llvm/Bytecode/WriteBytecodePass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h
index 8a061d298a..387bd0a9ba 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() {