commit | a517ab155b371e2911450d0048fb158931b8e68c | [log] [tgz] |
---|---|---|
author | Chad Rosier <mcrosier@apple.com> | Sun Nov 13 05:14:43 2011 +0000 |
committer | Chad Rosier <mcrosier@apple.com> | Sun Nov 13 05:14:43 2011 +0000 |
tree | 147562a1eeefb38d17d464cc398895529a3f2c32 | |
parent | 5be833de769608254fdfc56e8173000e874a8154 [diff] [blame] |
Temporarily disable SelectIntrinsicCall when in ARM mode. This is causing failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144492 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index 88ebd19..f3e6fc7 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -2136,6 +2136,7 @@ } bool ARMFastISel::SelectIntrinsicCall(const IntrinsicInst &I) { + if (!isThumb2) return false; // FIXME: Handle more intrinsics. switch (I.getIntrinsicID()) { default: return false;