[PATCH] D37071: [AArch64] fix for fcos and frem f16 promotion.
Sjoerd Meijer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 24 00:45:09 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL311635: [AArch64] fix for fcos and frem f16 promotion (authored by SjoerdMeijer).
Changed prior to commit:
https://reviews.llvm.org/D37071?vs=112384&id=112511#toc
Repository:
rL LLVM
https://reviews.llvm.org/D37071
Files:
llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
Index: llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ llvm/trunk/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -344,13 +344,11 @@
setOperationAction(ISD::FSUB, MVT::f16, Promote);
setOperationAction(ISD::FMUL, MVT::f16, Promote);
setOperationAction(ISD::FDIV, MVT::f16, Promote);
- setOperationAction(ISD::FREM, MVT::f16, Promote);
setOperationAction(ISD::FMA, MVT::f16, Promote);
setOperationAction(ISD::FNEG, MVT::f16, Promote);
setOperationAction(ISD::FABS, MVT::f16, Promote);
setOperationAction(ISD::FCEIL, MVT::f16, Promote);
setOperationAction(ISD::FSQRT, MVT::f16, Promote);
- setOperationAction(ISD::FCOS, MVT::f16, Promote);
setOperationAction(ISD::FFLOOR, MVT::f16, Promote);
setOperationAction(ISD::FNEARBYINT, MVT::f16, Promote);
setOperationAction(ISD::FRINT, MVT::f16, Promote);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37071.112511.patch
Type: text/x-patch
Size: 1086 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170824/bd070755/attachment.bin>
More information about the llvm-commits
mailing list