diff options
author | Mark Brown <broonie@kernel.org> | 2023-01-31 02:45:57 +0300 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2023-01-31 19:02:13 +0300 |
commit | b2ab432bcf65e6fa3ec3fef6dd08796404b009d0 (patch) | |
tree | a158186b137942fb33ccd0ea202c80e0fa653c45 /tools/testing/selftests/arm64 | |
parent | 3eb1b41fba97a1586e3ecca8c10547071f541567 (diff) | |
download | linux-b2ab432bcf65e6fa3ec3fef6dd08796404b009d0.tar.xz |
kselftest/arm64: Remove redundant _start labels from zt-test
The newly added zt-test program copied the pattern from the other FP
stress test programs of having a redundant _start label which is
rejected by clang, as we did in a parallel series for the other tests
remove the label so we can build with clang.
No functional change.
Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20230130-arm64-fix-sme2-clang-v1-1-3ce81d99ea8f@kernel.org
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'tools/testing/selftests/arm64')
-rw-r--r-- | tools/testing/selftests/arm64/fp/zt-test.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/testing/selftests/arm64/fp/zt-test.S b/tools/testing/selftests/arm64/fp/zt-test.S index 7ec90976cf5e..d63286397638 100644 --- a/tools/testing/selftests/arm64/fp/zt-test.S +++ b/tools/testing/selftests/arm64/fp/zt-test.S @@ -200,7 +200,6 @@ endfunction // Main program entry point .globl _start function _start -_start: mov x23, #0 // signal count mov w0, #SIGINT |