1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix long double -> uint64 conversion.

llvm-svn: 42440
This commit is contained in:
Dale Johannesen 2007-09-28 18:44:17 +00:00
parent a30678c8f0
commit 8660e0ed82

View File

@ -5398,8 +5398,12 @@ void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
RTLIB::Libcall LC;
if (Node->getOperand(0).getValueType() == MVT::f32)
LC = RTLIB::FPTOUINT_F32_I64;
else
else if (Node->getOperand(0).getValueType() == MVT::f64)
LC = RTLIB::FPTOUINT_F64_I64;
else if (Node->getOperand(0).getValueType() == MVT::f80 ||
Node->getOperand(0).getValueType() == MVT::f128 ||
Node->getOperand(0).getValueType() == MVT::ppcf128)
LC = RTLIB::FPTOUINT_LD_I64;
Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
false/*sign irrelevant*/, Hi);
break;