mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 02:33:53 +00:00
Silence a compiler warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42389 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2dc7a0e075
commit
64f638df56
@ -5743,7 +5743,7 @@ void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
|
|||||||
case ISD::UINT_TO_FP: {
|
case ISD::UINT_TO_FP: {
|
||||||
bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
|
bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
|
||||||
MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
|
MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
|
||||||
RTLIB::Libcall LC;
|
RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
|
||||||
if (Node->getOperand(0).getValueType() == MVT::i64) {
|
if (Node->getOperand(0).getValueType() == MVT::i64) {
|
||||||
if (VT == MVT::f32)
|
if (VT == MVT::f32)
|
||||||
LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
|
LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user