[llvm-commits] CVS: llvm/include/llvm/Bytecode/Writer.h

Chris Lattner sabre at nondot.org
Sat Jan 20 22:33:05 PST 2007



Changes in directory llvm/include/llvm/Bytecode:

Writer.h updated: 1.13 -> 1.14
---
Log message:

default to emiting an uncompressed .bc file


---
Diffs of the changes:  (+1 -1)

 Writer.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Bytecode/Writer.h
diff -u llvm/include/llvm/Bytecode/Writer.h:1.13 llvm/include/llvm/Bytecode/Writer.h:1.14
--- llvm/include/llvm/Bytecode/Writer.h:1.13	Wed Dec  6 19:30:30 2006
+++ llvm/include/llvm/Bytecode/Writer.h	Sun Jan 21 00:32:48 2007
@@ -23,7 +23,7 @@
   /// stream.  If compress is set to true, try to use compression when writing
   /// out the file.  This can never fail if M is a well-formed module.
   void WriteBytecodeToFile(const Module *M, OStream &Out,
-                           bool compress = true);
+                           bool compress = false);
 } // End llvm namespace
 
 #endif






More information about the llvm-commits mailing list