diff options
author | Dale Johannesen <dalej@apple.com> | 2008-09-22 21:57:32 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-09-22 21:57:32 +0000 |
commit | 7a74e714895d108b895616e820d5fa37a19244a6 (patch) | |
tree | 34159c50621ba63ee8b2ba204d5032b72187f29b /llvm/lib/Target/Sparc/SparcISelLowering.cpp | |
parent | fd462af19e47c86fa6ee9870fdef001874bd3c2e (diff) | |
download | bcm5719-llvm-7a74e714895d108b895616e820d5fa37a19244a6.tar.gz bcm5719-llvm-7a74e714895d108b895616e820d5fa37a19244a6.zip |
Make log, log2, log10, exp, exp2 use Expand by
default.
llvm-svn: 56471
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcISelLowering.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/Sparc/SparcISelLowering.cpp b/llvm/lib/Target/Sparc/SparcISelLowering.cpp index d89b6d44ff5..e68a60071b7 100644 --- a/llvm/lib/Target/Sparc/SparcISelLowering.cpp +++ b/llvm/lib/Target/Sparc/SparcISelLowering.cpp @@ -587,16 +587,6 @@ SparcTargetLowering::SparcTargetLowering(TargetMachine &TM) setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); setOperationAction(ISD::FPOW , MVT::f64, Expand); setOperationAction(ISD::FPOW , MVT::f32, Expand); - setOperationAction(ISD::FLOG , MVT::f64, Expand); - setOperationAction(ISD::FLOG , MVT::f32, Expand); - setOperationAction(ISD::FLOG2, MVT::f64, Expand); - setOperationAction(ISD::FLOG2, MVT::f32, Expand); - setOperationAction(ISD::FLOG10, MVT::f64, Expand); - setOperationAction(ISD::FLOG10, MVT::f32, Expand); - setOperationAction(ISD::FEXP , MVT::f64, Expand); - setOperationAction(ISD::FEXP , MVT::f32, Expand); - setOperationAction(ISD::FEXP2, MVT::f64, Expand); - setOperationAction(ISD::FEXP2, MVT::f32, Expand); setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand); setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand); |