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() {



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to