From: Alexandre Oliva Date: Wed, 22 Feb 2023 17:35:22 +0000 (-0300) Subject: [arm] [testsuite] asm-flag-4.c: match quotes in expected message X-Git-Tag: basepoints/gcc-14~923 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac113b5aa9cf789e4e06ddab87f30a4245782669;p=thirdparty%2Fgcc.git [arm] [testsuite] asm-flag-4.c: match quotes in expected message Quotes were added around the "asm" keyword in the message expected by the test, so the test needs adjusting. for gcc/testsuite/ChangeLog * gcc.target/arm/asm-flag-4.c: Match quotes around "asm" in message. --- diff --git a/gcc/testsuite/gcc.target/arm/asm-flag-4.c b/gcc/testsuite/gcc.target/arm/asm-flag-4.c index 75378cc89b09..6841b6ea1e27 100644 --- a/gcc/testsuite/gcc.target/arm/asm-flag-4.c +++ b/gcc/testsuite/gcc.target/arm/asm-flag-4.c @@ -11,5 +11,5 @@ void __attribute__((target("arm"))) f(char *out) void __attribute__((target("thumb"))) g(char *out) { - asm("" : "=@ccne"(out[0])); /* { dg-message "asm flags not supported" } */ + asm("" : "=@ccne"(out[0])); /* { dg-message ".asm. flags not supported" } */ }