aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@adacore.com>2023-02-22 14:35:22 -0300
committerAlexandre Oliva <oliva@gnu.org>2023-02-22 14:38:17 -0300
commitac113b5aa9cf789e4e06ddab87f30a4245782669 (patch)
tree0f1c5dea44898feba2a4eccd35ca45df8cbe3f9e /gcc
parent1a45573d3d7b0098116f4ccde5d9be5d32b5653a (diff)
downloadgcc-ac113b5aa9cf789e4e06ddab87f30a4245782669.zip
gcc-ac113b5aa9cf789e4e06ddab87f30a4245782669.tar.gz
gcc-ac113b5aa9cf789e4e06ddab87f30a4245782669.tar.bz2
[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.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.target/arm/asm-flag-4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/arm/asm-flag-4.c b/gcc/testsuite/gcc.target/arm/asm-flag-4.c
index 75378cc..6841b6e 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" } */
}