https://gcc.gnu.org/g:8d1b16962f6bc1de780d9c2bbaac3896efa599ff
commit r15-11352-g8d1b16962f6bc1de780d9c2bbaac3896efa599ff 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'" } */ }
