]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[arm] [testsuite] asm-flag-4.c: match quotes in expected message
authorAlexandre Oliva <oliva@adacore.com>
Wed, 22 Feb 2023 17:35:22 +0000 (14:35 -0300)
committerAlexandre Oliva <oliva@gnu.org>
Wed, 22 Feb 2023 17:38:17 +0000 (14:38 -0300)
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

index 75378cc89b09261bb67fc0f57670e80b9ec945d3..6841b6ea1e27288babbcc5b6d1112aa1a2c4d409 100644 (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" } */
 }