1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00

Don't hand ISD::CALL nodes off to SelectExprFP. This fixes siod.

llvm-svn: 21197
This commit is contained in:
Nate Begeman 2005-04-10 01:14:13 +00:00
parent b3518a838c
commit ab8e705a52

View File

@ -1388,7 +1388,8 @@ unsigned ISel::SelectExpr(SDOperand N) {
DestType = N.getValue(0).getValueType();
if (DestType == MVT::f64 || DestType == MVT::f32)
if (ISD::LOAD != opcode && ISD::EXTLOAD != opcode && ISD::UNDEF != opcode)
if (ISD::LOAD != opcode && ISD::EXTLOAD != opcode &&
ISD::UNDEF != opcode && ISD::CALL != opcode)
return SelectExprFP(N, Result);
switch (opcode) {