Skip to content

Commit 8a89fe5

Browse files
committed
[FMV] Rename feature ssbs2 to ssbs.
Depends on llvm/llvm-project#110297
1 parent 4538802 commit 8a89fe5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

SingleSource/UnitTests/AArch64/acle-fmv-features.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ CHECK(fp16, fp16, fp16, false, {
180180
: : : "v0"
181181
);
182182
})
183-
// When running try_ssbs2() on hardware which is affected by the "SSBS not fully
184-
// self-synchronizing" errata, the linux kernel mutes the detection of ssbs2 via
185-
// hardware caps. As a result the default version ends up running the ssbs2 code
183+
// When running try_ssbs() on hardware which is affected by the "SSBS not fully
184+
// self-synchronizing" errata, the linux kernel mutes the detection of ssbs via
185+
// hardware caps. As a result the default version ends up running the ssbs code
186186
// which was expected to trap originally. Passing IS_EXEMPT = true here allows
187187
// the default version to UPASS.
188-
CHECK(ssbs2, ssbs2, ssbs, true, {
188+
CHECK(ssbs, ssbs, ssbs, true, {
189189
asm volatile (
190190
"mrs x0, SSBS" "\n"
191191
"msr SSBS, x0" "\n"
@@ -402,7 +402,7 @@ int main(int, const char **) {
402402
check_i8mm();
403403
check_dit();
404404
check_fp16();
405-
check_ssbs2();
405+
check_ssbs();
406406
check_bti();
407407
check_simd();
408408
check_fp();

SingleSource/UnitTests/AArch64/acle-fmv-features.reference_output

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bf16
1717
i8mm
1818
dit
1919
fp16
20-
ssbs2
20+
ssbs
2121
bti
2222
simd
2323
fp

0 commit comments

Comments
 (0)