https://gcc.gnu.org/g:b33527c111ddee7b23d5062aa97a56652f3646e8
commit r16-9232-gb33527c111ddee7b23d5062aa97a56652f3646e8 Author: Torbjörn SVENSSON <[email protected]> Date: Mon Jul 6 12:58:02 2026 +0200 testsuite: arm: Properly quote command line arguments gcc/testsuite/ChangeLog: * gcc.target/arm/tls-disable-literal-pool.c: Add quotation for command line arguments. Signed-off-by: Torbjörn SVENSSON <[email protected]> (cherry picked from commit 920256fe84a32fc1dff55f7098a294d813b2e8ed) Diff: --- gcc/testsuite/gcc.target/arm/tls-disable-literal-pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.target/arm/tls-disable-literal-pool.c b/gcc/testsuite/gcc.target/arm/tls-disable-literal-pool.c index 834eaf6db92c..af3226be0f95 100644 --- a/gcc/testsuite/gcc.target/arm/tls-disable-literal-pool.c +++ b/gcc/testsuite/gcc.target/arm/tls-disable-literal-pool.c @@ -10,6 +10,6 @@ __thread int x = 0; int bar () { - return x; /* { dg-message "sorry, unimplemented: accessing thread-local storage is not currently supported with -mpure-code or -mslow-flash-data" } */ + return x; /* { dg-message "sorry, unimplemented: accessing thread-local storage is not currently supported with '-mpure-code' or '-mslow-flash-data'" } */ }
