diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-05-31 18:50:21 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2016-05-31 18:50:21 +0000 |
commit | e4b3812ec22f8b22108c4705662178e1e081bd73 (patch) | |
tree | 8deb5a13c94709ffb97a48a7c65e9beb2295284f /llvm/lib/CodeGen/TargetLoweringBase.cpp | |
parent | 2acffd4cd6623e75a137629f560c0538c40e45d5 (diff) | |
download | bcm5719-llvm-e4b3812ec22f8b22108c4705662178e1e081bd73.tar.gz bcm5719-llvm-e4b3812ec22f8b22108c4705662178e1e081bd73.zip |
[CodeGen] Don't mark FMINNUM/FMAXNUM Expand twice. NFC.
They're already in the all_valuetypes() loop above.
llvm-svn: 271316
Diffstat (limited to 'llvm/lib/CodeGen/TargetLoweringBase.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetLoweringBase.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/TargetLoweringBase.cpp b/llvm/lib/CodeGen/TargetLoweringBase.cpp index 433e4b7d205..97f85f53946 100644 --- a/llvm/lib/CodeGen/TargetLoweringBase.cpp +++ b/llvm/lib/CodeGen/TargetLoweringBase.cpp @@ -925,8 +925,6 @@ void TargetLoweringBase::initActions() { setOperationAction(ISD::FEXP , VT, Expand); setOperationAction(ISD::FEXP2, VT, Expand); setOperationAction(ISD::FFLOOR, VT, Expand); - setOperationAction(ISD::FMINNUM, VT, Expand); - setOperationAction(ISD::FMAXNUM, VT, Expand); setOperationAction(ISD::FNEARBYINT, VT, Expand); setOperationAction(ISD::FCEIL, VT, Expand); setOperationAction(ISD::FRINT, VT, Expand); |