[llvm-commits] CVS: llvm/include/llvm/Bytecode/WriteBytecodePass.h
Chris Lattner
sabre at nondot.org
Sat Jan 20 22:31:50 PST 2007
Changes in directory llvm/include/llvm/Bytecode:
WriteBytecodePass.h updated: 1.18 -> 1.19
---
Log message:
default to emiting an uncompressed .bc file
---
Diffs of the changes: (+2 -2)
WriteBytecodePass.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/Bytecode/WriteBytecodePass.h
diff -u llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.18 llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.19
--- llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.18 Wed Dec 6 19:30:30 2006
+++ llvm/include/llvm/Bytecode/WriteBytecodePass.h Sun Jan 21 00:31:34 2007
@@ -27,8 +27,8 @@
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() {
More information about the llvm-commits
mailing list