[llvm-commits] CVS: llvm/lib/Target/X86/InstSelectSimple.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Dec 28 03:54:04 PST 2003
Changes in directory llvm/lib/Target/X86:
InstSelectSimple.cpp updated: 1.146 -> 1.147
---
Log message:
Whoops, don't try to lower non intrinsic calls
---
Diffs of the changes: (+1 -0)
Index: llvm/lib/Target/X86/InstSelectSimple.cpp
diff -u llvm/lib/Target/X86/InstSelectSimple.cpp:1.146 llvm/lib/Target/X86/InstSelectSimple.cpp:1.147
--- llvm/lib/Target/X86/InstSelectSimple.cpp:1.146 Sun Dec 28 03:47:19 2003
+++ llvm/lib/Target/X86/InstSelectSimple.cpp Sun Dec 28 03:53:23 2003
@@ -1107,6 +1107,7 @@
if (CallInst *CI = dyn_cast<CallInst>(I++))
if (Function *F = CI->getCalledFunction())
switch (F->getIntrinsicID()) {
+ case Intrinsic::not_intrinsic:
case Intrinsic::va_start:
case Intrinsic::va_copy:
case Intrinsic::va_end:
More information about the llvm-commits
mailing list