mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
fix something-o
llvm-svn: 24987
This commit is contained in:
parent
a4a2d4c3fe
commit
2e386f9d46
@ -625,7 +625,7 @@ LowerOperation(SDOperand Op, SelectionDAG &DAG) {
|
||||
return DAG.getNode(ISD::BIT_CONVERT, MVT::i32, Op);
|
||||
case ISD::SINT_TO_FP: {
|
||||
assert(Op.getOperand(0).getValueType() == MVT::i32);
|
||||
Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op);
|
||||
Op = DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Op.getOperand(0));
|
||||
// Convert the int value to FP in an FP register.
|
||||
return DAG.getNode(V8ISD::ITOF, Op.getValueType(), Op);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user