Expands FCOS and FSIN nodes when type is f64.

llvm-svn: 127017
This commit is contained in:
Bruno Cardoso Lopes 2011-03-04 18:54:14 +00:00
parent 23648d7e3b
commit 22b69db8dd
1 changed files with 2 additions and 0 deletions

View File

@ -129,7 +129,9 @@ MipsTargetLowering(MipsTargetMachine &TM)
setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
setOperationAction(ISD::FSIN, MVT::f32, Expand);
setOperationAction(ISD::FSIN, MVT::f64, Expand);
setOperationAction(ISD::FCOS, MVT::f32, Expand);
setOperationAction(ISD::FCOS, MVT::f64, Expand);
setOperationAction(ISD::FPOWI, MVT::f32, Expand);
setOperationAction(ISD::FPOW, MVT::f32, Expand);
setOperationAction(ISD::FLOG, MVT::f32, Expand);