diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:53:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-28 09:53:23 +0000 |
commit | aed386e6b0216722af654d822d0a0e9ffb571c3b (patch) | |
tree | 40dc1ffc5b9671303b86ca456a825e5175d83628 /lib/Target/X86/InstSelectSimple.cpp | |
parent | 6fb6ce3148ec4a9aaab47800da2365d7f60a6f5b (diff) |
Whoops, don't try to lower non intrinsic calls
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/InstSelectSimple.cpp')
-rw-r--r-- | lib/Target/X86/InstSelectSimple.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/InstSelectSimple.cpp b/lib/Target/X86/InstSelectSimple.cpp index 0e07579d73..1029fc669b 100644 --- a/lib/Target/X86/InstSelectSimple.cpp +++ b/lib/Target/X86/InstSelectSimple.cpp @@ -1107,6 +1107,7 @@ void ISel::LowerUnknownIntrinsicFunctionCalls(Function &F) { 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: |