From ac113b5aa9cf789e4e06ddab87f30a4245782669 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Wed, 22 Feb 2023 14:35:22 -0300 Subject: [PATCH] [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. --- gcc/testsuite/gcc.target/arm/asm-flag-4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } */ } -- 2.47.2