1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[fast-isel] SelectInsertValue seems to be causing miscompiles for ARM. Disable while I investigate.

llvm-svn: 146331
This commit is contained in:
Chad Rosier 2011-12-10 21:27:40 +00:00
parent d8a265c838
commit 2cf6a76fd4

View File

@ -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;