Skip to content

Commit b36b3a0

Browse files
committed
Rename AEK_SME2p1 to AEK_SME2P1
1 parent 7b2e80e commit b36b3a0

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

lldb/test/Shell/Commands/command-disassemble-aarch64-extensions.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn:
5959
bdep z0.b, z1.b, z31.b // AEK_SVE2BITPERM
6060
rax1 z0.d, z0.d, z0.d // AEK_SVE2SHA3
6161
sm4e z0.s, z0.s, z0.s // AEK_SVE2SM4
62-
addqv v0.8h, p0, z0.h // AEK_SVE2p1 / AEK_SME2p1
62+
addqv v0.8h, p0, z0.h // AEK_SVE2p1 / AEK_SME2P1
6363
rcwswp x0, x1, [x2] // AEK_THE
6464
tcommit // AEK_TME
6565
lbl:

llvm/include/llvm/TargetParser/AArch64TargetParser.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ enum ArchExtKind : unsigned {
111111
AEK_NUM_EXTENSIONS,
112112

113113
// FIXME temporary fixes for inconsistent naming.
114-
AEK_SME2p1 = AEK_SME2P1,
115114
AEK_SVE2p1 = AEK_SVE2P1,
116115
AEK_SME_LUTv2 = AEK_SME_LUTV2,
117116

@@ -203,7 +202,7 @@ inline constexpr ExtensionInfo Extensions[] = {
203202
{"sme-i16i64", AArch64::AEK_SMEI16I64, "+sme-i16i64", "-sme-i16i64", FEAT_SME_I64, "+sme,+sme-i16i64,+bf16", 570},
204203
{"sme", AArch64::AEK_SME, "+sme", "-sme", FEAT_SME, "+sme,+bf16", 430},
205204
{"sme2", AArch64::AEK_SME2, "+sme2", "-sme2", FEAT_SME2, "+sme2,+sme,+bf16", 580},
206-
{"sme2p1", AArch64::AEK_SME2p1, "+sme2p1", "-sme2p1", FEAT_INIT, "+sme2p1,+sme2,+sme,+bf16", 0},
205+
{"sme2p1", AArch64::AEK_SME2P1, "+sme2p1", "-sme2p1", FEAT_INIT, "+sme2p1,+sme2,+sme,+bf16", 0},
207206
{"ssbs", AArch64::AEK_SSBS, "+ssbs", "-ssbs", FEAT_SSBS, "", 490},
208207
{"ssbs2", AArch64::AEK_NONE, {}, {}, FEAT_SSBS2, "+ssbs", 500},
209208
{"sve-bf16", AArch64::AEK_NONE, {}, {}, FEAT_SVE_BF16, "+sve,+bf16,+fullfp16,+fp-armv8,+neon", 320},
@@ -329,7 +328,7 @@ inline constexpr ExtensionDependency ExtensionDependencies[] = {
329328
{AEK_SME, AEK_SMEF64F64},
330329
{AEK_SME, AEK_SMEI16I64},
331330
{AEK_SME, AEK_SMEFA64},
332-
{AEK_SME2, AEK_SME2p1},
331+
{AEK_SME2, AEK_SME2P1},
333332
{AEK_SME2, AEK_SSVE_FP8FMA},
334333
{AEK_SME2, AEK_SSVE_FP8DOT2},
335334
{AEK_SME2, AEK_SSVE_FP8DOT4},

llvm/unittests/TargetParser/TargetParserTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1992,7 +1992,7 @@ TEST(TargetParserTest, AArch64ExtensionFeatures) {
19921992
AArch64::AEK_SMEI16I64, AArch64::AEK_SME2,
19931993
AArch64::AEK_HBC, AArch64::AEK_MOPS,
19941994
AArch64::AEK_PERFMON, AArch64::AEK_SVE2p1,
1995-
AArch64::AEK_SME2p1, AArch64::AEK_B16B16,
1995+
AArch64::AEK_SME2P1, AArch64::AEK_B16B16,
19961996
AArch64::AEK_SMEF16F16, AArch64::AEK_CSSC,
19971997
AArch64::AEK_RCPC3, AArch64::AEK_THE,
19981998
AArch64::AEK_D128, AArch64::AEK_LSE128,

0 commit comments

Comments
 (0)