From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 55B5F3858425; Thu, 16 Feb 2023 11:12:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 55B5F3858425 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676545935; bh=GhPsHFBxVYUiTjSmfA8SSKs5URP+KSQEEC9mYUl7uZQ=; h=From:To:Subject:Date:From; b=WoE+N4ci5CaA9A0QwqW1L4Gc8qzxMBmRXdH01Dz+5Krsx+xiVphhNxV3QMnwXS70I L2o4iJyfvBIay1R3AuPnQME9W+WWdKKO6MtZX3oCMX3W4EPqp6eh6JaOimKhqdf/aa n5UBH21n8dSFO07hIAKOm34cmZdqaxtohkHITaWY= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/aoliva/heads/testme)] [arm] [testsuite] asm-flag-4.c: match quotes in expected message X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: 245f28684655f44ee8334594dfedf962fc37e8f5 X-Git-Newrev: a557b77dff3d274e1b99b2c51d43bb042602c5fa Message-Id: <20230216111215.55B5F3858425@sourceware.org> Date: Thu, 16 Feb 2023 11:12:15 +0000 (GMT) List-Id: https://gcc.gnu.org/g:a557b77dff3d274e1b99b2c51d43bb042602c5fa commit a557b77dff3d274e1b99b2c51d43bb042602c5fa Author: Alexandre Oliva Date: Thu Feb 16 06:35:39 2023 -0300 [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: --- 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 75378cc89b0..6841b6ea1e2 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" } */ }