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/ARM/ARMISelLowering.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/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index 2202177e186..e859a8433e7 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -243,16 +243,6 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::FCOS , MVT::f64, Expand); setOperationAction(ISD::FREM , MVT::f64, Expand); setOperationAction(ISD::FREM , 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); if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb()) { setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom); setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom); |