summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2011-12-10 21:27:40 +0000
committerChad Rosier <mcrosier@apple.com>2011-12-10 21:27:40 +0000
commit4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca (patch)
tree608cd5c2d78346c7541771c3b1a215c577fa91f0
parentd440f678fb0fd6a8735bc315bd6f63fe8a71e8bd (diff)
downloadllvm-4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca.tar.gz
llvm-4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca.tar.bz2
llvm-4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca.tar.xz
[fast-isel] SelectInsertValue seems to be causing miscompiles for ARM. Disable while I investigate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146331 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp
index ca1b42de41..b6990d0268 100644
--- a/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -943,6 +943,7 @@ FastISel::SelectExtractValue(const User *U) {
bool
FastISel::SelectInsertValue(const User *U) {
+ return false;
const InsertValueInst *IVI = dyn_cast<InsertValueInst>(U);
if (!IVI)
return false;