Expand uint_to_fp

llvm-svn: 76038
This commit is contained in:
Anton Korobeynikov 2009-07-16 14:25:30 +00:00
parent 1ae8098144
commit 3f254d536a
1 changed files with 2 additions and 0 deletions

View File

@ -127,6 +127,8 @@ SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm) :
setOperationAction(ISD::FSIN, MVT::f64, Expand);
setOperationAction(ISD::FCOS, MVT::f32, Expand);
setOperationAction(ISD::FCOS, MVT::f64, Expand);
setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand);
}
SDValue SystemZTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {