[PATCH] D138788: [SVE] Change some bfloat lane intrinsics to use i32 immediates
David Sherwood via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 30 02:49:13 PST 2022
david-arm marked an inline comment as done.
david-arm added inline comments.
================
Comment at: llvm/include/llvm/IR/IntrinsicsAArch64.td:2527
-def int_aarch64_sve_bfdot_lane : SVE_4Vec_BF16_Indexed;
-def int_aarch64_sve_bfmlalb_lane : SVE_4Vec_BF16_Indexed;
-def int_aarch64_sve_bfmlalt_lane : SVE_4Vec_BF16_Indexed;
+def int_aarch64_sve_bfdot_lane : SVE_4Vec_BF16_Indexed;
+def int_aarch64_sve_bfdot_lane_i32 : SVE_4Vec_BF16_Indexed_I32;
----------------
sdesmalen wrote:
> do you also want to remove the old intrinsics?
Good spot! Turns out that not only had I done this wrong, but I'd also missed out upgrades for bfmlalb/t too. :)
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138788/new/
https://reviews.llvm.org/D138788
More information about the cfe-commits
mailing list