From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 8EA3438654A3; Tue, 8 Jun 2021 08:07:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8EA3438654A3 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-1279] testsuite: Add -Wno-psabi -w to pr100887.c test [PR100943] X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 245517470d6948a40cead9f5c312b8d79ac5c491 X-Git-Newrev: ec2174c6957e97bd69c001a782cd52b98e6ba2fb Message-Id: <20210608080749.8EA3438654A3@sourceware.org> Date: Tue, 8 Jun 2021 08:07:49 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jun 2021 08:07:49 -0000 https://gcc.gnu.org/g:ec2174c6957e97bd69c001a782cd52b98e6ba2fb commit r12-1279-gec2174c6957e97bd69c001a782cd52b98e6ba2fb Author: Jakub Jelinek Date: Tue Jun 8 10:06:13 2021 +0200 testsuite: Add -Wno-psabi -w to pr100887.c test [PR100943] On x86 the test is using -mavx512f and so never reports the various -Wpsabi notes/warnings, but on other targets it can. 2021-06-08 Jakub Jelinek PR target/100887 PR testsuite/100943 * gcc.dg/pr100887.c: Add -Wno-psabi -w to dg-options. Diff: --- gcc/testsuite/gcc.dg/pr100887.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/pr100887.c b/gcc/testsuite/gcc.dg/pr100887.c index de6b3effe13..027025f32f6 100644 --- a/gcc/testsuite/gcc.dg/pr100887.c +++ b/gcc/testsuite/gcc.dg/pr100887.c @@ -1,6 +1,6 @@ /* PR target/100887 */ /* { dg-do compile } */ -/* { dg-options "" } */ +/* { dg-options "-Wno-psabi -w" } */ /* { dg-additional-options "-mavx512f" { target { i?86-*-* x86_64-*-* } } } */ typedef unsigned long long __attribute__((__vector_size__ (2 * sizeof (long long)))) U;