From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 015993856173 for ; Thu, 20 Oct 2022 12:05:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 015993856173 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1666267537; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type; bh=GzD72FXzkM3VivoYXg7XMlT6ct1wu7eXPMbmgOD1Gj8=; b=HaNC5FmiWT4hGF+JNyokvL71sXY7H5aX4e8SrhYKWvGoIaCE5FqXVAbOKvdYNO19vn5ERX GYhMoKk1BInQYCV+JM8YuGFaAK2n9kkFpBCZp5/EHM0zNOSnEpEyabtSLJ3Tdf3DrmH3lS siJqMVoJwZ7cwpB2qZ3NLEoqJnJXVTo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-450-_3tTqnPrMY6bAnTVgePlug-1; Thu, 20 Oct 2022 08:05:36 -0400 X-MC-Unique: _3tTqnPrMY6bAnTVgePlug-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 3BF7C185A79C for ; Thu, 20 Oct 2022 12:05:36 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.193.252]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F0FB8C15BBC for ; Thu, 20 Oct 2022 12:05:35 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.17.1/8.17.1) with ESMTPS id 29KC5SDV1621350 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT) for ; Thu, 20 Oct 2022 14:05:34 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 29KC5IAS1621349 for gcc-patches@gcc.gnu.org; Thu, 20 Oct 2022 14:05:18 +0200 Date: Thu, 20 Oct 2022 14:05:17 +0200 From: Jakub Jelinek To: gcc-patches@gcc.gnu.org Subject: [committed] testsuite: Add some missing -Wno-psabi options Message-ID: Reply-To: Jakub Jelinek MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_SHORT,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi! The following testcases FAIL on i686-linux due to excess diagnostics for -Wpsabi. Tested on x86_64-linux with make check-gcc RUNTESTFLAGS='--target_board=unix\{-m32/-msse2,-m32/-mno-mmx/-mno-sse,-m64\} i386.exp=pr107271.c btf.exp=btf-function-3.c' and committed to trunk as obvious. 2022-10-20 Jakub Jelinek * gcc.target/i386/pr107271.c: Add -Wno-psabi to dg-options. * gcc.dg/debug/btf/btf-function-3.c: Likewise. --- gcc/testsuite/gcc.target/i386/pr107271.c.jj 2022-10-19 11:20:54.633878743 +0200 +++ gcc/testsuite/gcc.target/i386/pr107271.c 2022-10-20 13:52:47.000966060 +0200 @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O0" } */ +/* { dg-options "-O0 -Wno-psabi" } */ typedef int __attribute__((__vector_size__ (16))) V; --- gcc/testsuite/gcc.dg/debug/btf/btf-function-3.c.jj 2021-07-02 21:55:48.696990745 +0200 +++ gcc/testsuite/gcc.dg/debug/btf/btf-function-3.c 2022-10-20 13:17:58.793270607 +0200 @@ -7,7 +7,7 @@ has type_id=0. */ /* { dg-do compile } */ -/* { dg-options "-O0 -gbtf -dA" } */ +/* { dg-options "-O0 -gbtf -dA -Wno-psabi" } */ /* { dg-final { scan-assembler-times "\[\t \]0xd000003\[\t \]+\[^\n\]*btt_info" 1 } } */ /* { dg-final { scan-assembler-times "farg_name" 3 } } */ Jakub