forked from OSchip/llvm-project
Expands FCOS and FSIN nodes when type is f64.
llvm-svn: 127017
This commit is contained in:
parent
23648d7e3b
commit
22b69db8dd
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue