diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-08 17:35:34 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-08 17:35:34 +0000 |
commit | ad768d7a1a7f5ac922cb7587bf7a318a37b4516f (patch) | |
tree | 1f8f4c964d3b8afcdd6de4ac0fd0c58931fb49e8 /include/llvm/Bytecode | |
parent | cceed9fc770e1501540f81b8dce5dfd83421a7ca (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.h | 2 |
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() { |