diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-11-13 05:14:43 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-11-13 05:14:43 +0000 |
commit | a476e391f15d8ef9434aedef24de71ccf3ba0f13 (patch) | |
tree | cc989fccda6da86c1238cd7122be3570ad004a92 /llvm/lib/Target/ARM | |
parent | 93e8619ded45e1f185df62acbbc20d6b6bab3df3 (diff) | |
download | bcm5719-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')
-rw-r--r-- | llvm/lib/Target/ARM/ARMFastISel.cpp | 1 |
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; |