[llvm-commits] CVS: llvm/include/llvm/Bytecode/WriteBytecodePass.h
Reid Spencer
reid at x10sys.com
Mon Nov 8 09:35:45 PST 2004
Changes in directory llvm/include/llvm/Bytecode:
WriteBytecodePass.h updated: 1.12 -> 1.13
---
Log message:
Make writing compressed bytecode the default.
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/Bytecode/WriteBytecodePass.h
diff -u llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.12 llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.13
--- llvm/include/llvm/Bytecode/WriteBytecodePass.h:1.12 Sat Nov 6 23:30:43 2004
+++ llvm/include/llvm/Bytecode/WriteBytecodePass.h Mon Nov 8 11:35:34 2004
@@ -28,7 +28,7 @@
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() {
More information about the llvm-commits
mailing list