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

Reid Spencer reid at x10sys.com
Sun Nov 7 10:18:22 PST 2004



Changes in directory llvm/include/llvm/Bytecode:

Writer.h updated: 1.7 -> 1.8
---
Log message:

Make compression the default on writing.


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

Index: llvm/include/llvm/Bytecode/Writer.h
diff -u llvm/include/llvm/Bytecode/Writer.h:1.7 llvm/include/llvm/Bytecode/Writer.h:1.8
--- llvm/include/llvm/Bytecode/Writer.h:1.7	Sat Nov  6 17:17:22 2004
+++ llvm/include/llvm/Bytecode/Writer.h	Sun Nov  7 12:18:11 2004
@@ -29,7 +29,7 @@
 namespace llvm {
   class Module;
   void WriteBytecodeToFile(const Module *M, std::ostream &Out, 
-                           bool compress = false);
+                           bool compress = true);
 } // End llvm namespace
 
 #endif






More information about the llvm-commits mailing list