diff options
author | Dan Gohman <gohman@apple.com> | 2007-10-11 23:21:31 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-10-11 23:21:31 +0000 |
commit | 482732af9d8e32ee5e2a29b264f31735603cb290 (patch) | |
tree | 4e847af0e3a11eeca8399bc9ecfb06a7990a8dfe /llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp | |
parent | fd66486950253677c165af71e6ef1412d8964ec7 (diff) | |
download | bcm5719-llvm-482732af9d8e32ee5e2a29b264f31735603cb290.tar.gz bcm5719-llvm-482732af9d8e32ee5e2a29b264f31735603cb290.zip |
Set ISD::FPOW to Expand.
llvm-svn: 42881
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp b/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp index 8a6c320435e..223f39807d7 100644 --- a/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp +++ b/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp @@ -205,6 +205,8 @@ SparcTargetLowering::SparcTargetLowering(TargetMachine &TM) setOperationAction(ISD::BSWAP, MVT::i32, Expand); setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); + setOperationAction(ISD::FPOW , MVT::f64, Expand); + setOperationAction(ISD::FPOW , MVT::f32, Expand); setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand); setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand); |