[llvm-commits] CVS: llvm/lib/Bytecode/Writer/Writer.cpp
Reid Spencer
reid at x10sys.com
Wed Oct 25 23:16:23 PDT 2006
Changes in directory llvm/lib/Bytecode/Writer:
Writer.cpp updated: 1.125 -> 1.126
---
Log message:
For PR950: http://llvm.org/PR950 :
Make necessary changes to support DIV -> [SUF]Div. This changes llvm to
have three division instructions: signed, unsigned, floating point. The
bytecode and assembler are bacwards compatible, however.
---
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.125 llvm/lib/Bytecode/Writer/Writer.cpp:1.126
--- llvm/lib/Bytecode/Writer/Writer.cpp:1.125 Fri Oct 20 02:07:24 2006
+++ llvm/lib/Bytecode/Writer/Writer.cpp Thu Oct 26 01:15:43 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