[PATCH] D53927: [AArch64] Enable libm vectorized functions via SLEEF
Stefan Teleman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 26 14:17:11 PST 2019
steleman marked 2 inline comments as done.
steleman added inline comments.
================
Comment at: include/llvm/IR/Intrinsics.td:516-533
+ def int_acos : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
+ def int_asin : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
+ def int_atan : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
+ def int_atan2 : Intrinsic<[llvm_anyfloat_ty],
+ [LLVMMatchType<0>, LLVMMatchType<0>]>;
+ def int_tan : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>;
def int_pow : Intrinsic<[llvm_anyfloat_ty],
----------------
arsenm wrote:
> I would split adding the new intrinsics into a separate patch
That won't work.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D53927/new/
https://reviews.llvm.org/D53927
More information about the llvm-commits
mailing list