kselftest/arm64: Fix .pushsection for strings in FP tests
authorMark Brown <broonie@kernel.org>
Thu, 12 Jan 2023 19:51:47 +0000 (19:51 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Fri, 20 Jan 2023 14:30:45 +0000 (14:30 +0000)
The .pushsection directive used to store the strings used with the .puts
macro in the floating point helpers does not provide a section type but
according to the gas documentation this should be mandatory and with the
clang built in as it actually is. Provide one so that we can build these
tests with LLVM=1.

No functional change.

Signed-off-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lore.kernel.org/r/20230111-arm64-kselftest-clang-v1-1-89c69d377727@kernel.org
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
tools/testing/selftests/arm64/fp/assembler.h

index 90bd433d266525c777191da1dca5d0163b60292a..9b38a0da407d8b0aedde64287b845f9ad50dacf1 100644 (file)
@@ -57,7 +57,7 @@ endfunction
 // Utility macro to print a literal string
 // Clobbers x0-x4,x8
 .macro puts string
-       .pushsection .rodata.str1.1, "aMS", 1
+       .pushsection .rodata.str1.1, "aMS", @progbits, 1
 .L__puts_literal\@: .string "\string"
        .popsection