From 2cf6a76fd4fef727933f2076779e6bf327ac65f2 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. llvm-svn: 146331 --- 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;