[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.
This commit is contained in:
Alexandre Oliva 2023-02-22 14:35:22 -03:00 committed by Alexandre Oliva
parent 1a45573d3d
commit ac113b5aa9

View file

@ -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" } */
}