[llvm-commits] [llvm] r146331 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Chad Rosier
mcrosier at apple.com
Sat Dec 10 13:27:40 PST 2011
Author: mcrosier
Date: Sat Dec 10 15:27:40 2011
New Revision: 146331
URL: http://llvm.org/viewvc/llvm-project?rev=146331&view=rev
Log:
[fast-isel] SelectInsertValue seems to be causing miscompiles for ARM. Disable while I investigate.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=146331&r1=146330&r2=146331&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Sat Dec 10 15:27:40 2011
@@ -943,6 +943,7 @@
bool
FastISel::SelectInsertValue(const User *U) {
+ return false;
const InsertValueInst *IVI = dyn_cast<InsertValueInst>(U);
if (!IVI)
return false;
More information about the llvm-commits
mailing list