summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMFastISel.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-11-13 05:14:43 +0000
committerChad Rosier <mcrosier@apple.com>2011-11-13 05:14:43 +0000
commita476e391f15d8ef9434aedef24de71ccf3ba0f13 (patch)
treecc989fccda6da86c1238cd7122be3570ad004a92 /llvm/lib/Target/ARM/ARMFastISel.cpp
parent93e8619ded45e1f185df62acbbc20d6b6bab3df3 (diff)
downloadbcm5719-llvm-a476e391f15d8ef9434aedef24de71ccf3ba0f13.tar.gz
bcm5719-llvm-a476e391f15d8ef9434aedef24de71ccf3ba0f13.zip
Temporarily disable SelectIntrinsicCall when in ARM mode. This is causing failures.
llvm-svn: 144492
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFastISel.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMFastISel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp
index 88ebd19bdc4..f3e6fc7781b 100644
--- a/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/llvm/lib/Target/ARM/ARMFastISel.cpp
@@ -2136,6 +2136,7 @@ bool ARMFastISel::SelectCall(const Instruction *I,
}
bool ARMFastISel::SelectIntrinsicCall(const IntrinsicInst &I) {
+ if (!isThumb2) return false;
// FIXME: Handle more intrinsics.
switch (I.getIntrinsicID()) {
default: return false;
OpenPOWER on IntegriCloud