[llvm-commits] [SignlessTypes] CVS: llvm/lib/Bytecode/Reader/Reader.cpp
Reid Spencer
reid at x10sys.com
Thu Oct 19 21:27:46 PDT 2006
Changes in directory llvm/lib/Bytecode/Reader:
Reader.cpp updated: 1.198.2.2 -> 1.198.2.3
---
Log message:
Initial patch for DIV -> SDIV/UDIV
---
Diffs of the changes: (+2 -0)
Reader.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/Bytecode/Reader/Reader.cpp
diff -u llvm/lib/Bytecode/Reader/Reader.cpp:1.198.2.2 llvm/lib/Bytecode/Reader/Reader.cpp:1.198.2.3
--- llvm/lib/Bytecode/Reader/Reader.cpp:1.198.2.2 Thu Oct 19 18:54:13 2006
+++ llvm/lib/Bytecode/Reader/Reader.cpp Thu Oct 19 23:27:17 2006
@@ -675,6 +675,7 @@
Result = new VAArgInst(getValue(iType, Oprnds[0]),
getSanitizedType(Oprnds[1]));
break;
+#if 0 // FIXME: This needs to be handled
case 32: { //VANext_old
const Type* ArgTy = getValue(iType, Oprnds[0])->getType();
Function* NF = TheModule->getOrInsertFunction("llvm.va_copy", ArgTy, ArgTy,
@@ -714,6 +715,7 @@
Result = new VAArgInst(foo, getSanitizedType(Oprnds[1]));
break;
}
+#endif
case Instruction::ExtractElement: {
if (Oprnds.size() != 2)
error("Invalid extractelement instruction!");
More information about the llvm-commits
mailing list