From: Chad Rosier Date: Sat, 10 Dec 2011 21:27:40 +0000 (+0000) Subject: [fast-isel] SelectInsertValue seems to be causing miscompiles for ARM. Disable while... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4552d3e22abbb4e6a9078b5ff9e7c59e44e29fca;p=oota-llvm.git [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 --- 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;