[llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp
Reid Spencer
reid at x10sys.com
Thu Nov 25 11:38:16 PST 2004
Changes in directory llvm/lib/Bytecode/Writer:
Writer.cpp updated: 1.90 -> 1.91
---
Log message:
Adjust to Compressor interface change
---
Diffs of the changes: (+1 -2)
Index: llvm/lib/Bytecode/Writer/Writer.cpp
diff -u llvm/lib/Bytecode/Writer/Writer.cpp:1.90 llvm/lib/Bytecode/Writer/Writer.cpp:1.91
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.90 Mon Nov 15 16:39:49 2004
+++ llvm/lib/Bytecode/Writer/Writer.cpp Thu Nov 25 13:38:05 2004
@@ -1128,8 +1128,7 @@
uint64_t zipSize = Compressor::compressToStream(
(char*)(FirstByte+4), // Skip the magic number
Buffer.size()-4, // Skip the magic number
- Out, // Where to write compressed data
- Compressor::COMP_TYPE_BZIP2 // Try bzip2 compression first
+ Out // Where to write compressed data
);
} else {
More information about the llvm-commits
mailing list