[llvm-commits] CVS: llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 28 03:54:01 PST 2003
Changes in directory llvm/lib/CodeGen/InstrSelection:
InstrSelection.cpp updated: 1.66 -> 1.67
---
Log message:
Whoops, don't try to lower non intrinsic calls
---
Diffs of the changes: (+1 -0)
Index: llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp
diff -u llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp:1.66 llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp:1.67
--- llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp:1.66 Sun Dec 28 03:43:35 2003
+++ llvm/lib/CodeGen/InstrSelection/InstrSelection.cpp Sun Dec 28 03:53:23 2003
@@ -132,6 +132,7 @@
#undef va_start
#undef va_copy
#undef va_end
+ case Intrinsic::not_intrinsic:
case Intrinsic::va_start:
case Intrinsic::va_copy:
case Intrinsic::va_end:
More information about the llvm-commits
mailing list