Fix CodeGen/Generic/print-arith-fp.ll on sparc (PR1551)

llvm-svn: 39813
This commit is contained in:
Chris Lattner 2007-07-13 16:24:10 +00:00
parent 7c9c5362ef
commit 2b4d9b684f
1 changed files with 2 additions and 0 deletions

View File

@ -191,8 +191,10 @@ SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
setOperationAction(ISD::FSIN , MVT::f64, Expand);
setOperationAction(ISD::FCOS , MVT::f64, Expand);
setOperationAction(ISD::FREM , MVT::f64, Expand);
setOperationAction(ISD::FSIN , MVT::f32, Expand);
setOperationAction(ISD::FCOS , MVT::f32, Expand);
setOperationAction(ISD::FREM , MVT::f32, Expand);
setOperationAction(ISD::CTPOP, MVT::i32, Expand);
setOperationAction(ISD::CTTZ , MVT::i32, Expand);
setOperationAction(ISD::CTLZ , MVT::i32, Expand);