From 4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Sat, 10 Dec 2011 21:27:40 +0000 Subject: [PATCH] [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 --- lib/CodeGen/SelectionDAG/FastISel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index ca1b42de41a..b6990d02687 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(U); if (!IVI) return false;