[llvm-commits] [SignlessTypes] CVS: llvm/lib/Bytecode/Writer/Writer.cpp

Reid Spencer reid at x10sys.com
Sat Oct 21 02:00:02 PDT 2006



Changes in directory llvm/lib/Bytecode/Writer:

Writer.cpp updated: 1.124.2.1 -> 1.124.2.2
---
Log message:

Implement backwards compatibility in bytecode reader for signless types.
Bump bytecode writer version number (to 6).
Fix bugs in DIV -> SDIV/UDIV changes.


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

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


Index: llvm/lib/Bytecode/Writer/Writer.cpp
diff -u llvm/lib/Bytecode/Writer/Writer.cpp:1.124.2.1 llvm/lib/Bytecode/Writer/Writer.cpp:1.124.2.2
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.124.2.1	Wed Oct 18 22:57:55 2006
+++ llvm/lib/Bytecode/Writer/Writer.cpp	Sat Oct 21 03:59:42 2006
@@ -40,7 +40,7 @@
 /// so that the reader can distinguish which format of the bytecode file has
 /// been written.
 /// @brief The bytecode version number
-const unsigned BCVersionNum = 5;
+const unsigned BCVersionNum = 6;
 
 static RegisterPass<WriteBytecodePass> X("emitbytecode", "Bytecode Writer");
 






More information about the llvm-commits mailing list