[llvm] 5ffbac3 - [AArch64] NFC: Fix BFMLAL[BT] inst def names
Cullen Rhodes via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 17 01:55:06 PDT 2022
Author: Cullen Rhodes
Date: 2022-06-17T08:54:51Z
New Revision: 5ffbac340d6dba69cd36373d513ca8b9d2790abb
URL: https://github.com/llvm/llvm-project/commit/5ffbac340d6dba69cd36373d513ca8b9d2790abb
DIFF: https://github.com/llvm/llvm-project/commit/5ffbac340d6dba69cd36373d513ca8b9d2790abb.diff
LOG: [AArch64] NFC: Fix BFMLAL[BT] inst def names
Added:
Modified:
llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td b/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
index 3262b3e20d81e..c620c6ea1d35b 100644
--- a/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
+++ b/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
@@ -1940,10 +1940,10 @@ let Predicates = [HasBF16, HasSVE] in {
} // End HasBF16, HasSVE
let Predicates = [HasBF16, HasSVEorSME] in {
- defm BFMMLA_B_ZZZ : sve_bfloat_matmul_longvecl<0b0, "bfmlalb", int_aarch64_sve_bfmlalb>;
- defm BFMMLA_T_ZZZ : sve_bfloat_matmul_longvecl<0b1, "bfmlalt", int_aarch64_sve_bfmlalt>;
- defm BFMMLA_B_ZZI : sve_bfloat_matmul_longvecl_idx<0b0, "bfmlalb", int_aarch64_sve_bfmlalb_lane>;
- defm BFMMLA_T_ZZI : sve_bfloat_matmul_longvecl_idx<0b1, "bfmlalt", int_aarch64_sve_bfmlalt_lane>;
+ defm BFMLALB_ZZZ : sve_bfloat_matmul_longvecl<0b0, "bfmlalb", int_aarch64_sve_bfmlalb>;
+ defm BFMLALT_ZZZ : sve_bfloat_matmul_longvecl<0b1, "bfmlalt", int_aarch64_sve_bfmlalt>;
+ defm BFMLALB_ZZI : sve_bfloat_matmul_longvecl_idx<0b0, "bfmlalb", int_aarch64_sve_bfmlalb_lane>;
+ defm BFMLALT_ZZI : sve_bfloat_matmul_longvecl_idx<0b1, "bfmlalt", int_aarch64_sve_bfmlalt_lane>;
defm BFCVT_ZPmZ : sve_bfloat_convert<0b1, "bfcvt", int_aarch64_sve_fcvt_bf16f32>;
defm BFCVTNT_ZPmZ : sve_bfloat_convert<0b0, "bfcvtnt", int_aarch64_sve_fcvtnt_bf16f32>;
} // End HasBF16, HasSVEorSME
More information about the llvm-commits
mailing list