[llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Jan 13 20:51:01 PST 2004
Changes in directory llvm/lib/Bytecode/Writer:
Writer.cpp updated: 1.50 -> 1.51
---
Log message:
Toggle sense of flag
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Bytecode/Writer/Writer.cpp
diff -u llvm/lib/Bytecode/Writer/Writer.cpp:1.50 llvm/lib/Bytecode/Writer/Writer.cpp:1.51
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.50 Sat Jan 10 13:56:59 2004
+++ llvm/lib/Bytecode/Writer/Writer.cpp Tue Jan 13 20:50:16 2004
@@ -40,7 +40,7 @@
BytecodeWriter::BytecodeWriter(std::deque<unsigned char> &o, const Module *M)
- : Out(o), Table(M, false) {
+ : Out(o), Table(M, true) {
outputSignature();
More information about the llvm-commits
mailing list