From patchwork Thu Aug 11 08:34:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Jelinek X-Patchwork-Id: 56693 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 776E23856DF8 for ; Fri, 12 Aug 2022 09:05:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 776E23856DF8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1660295123; bh=T+dqj6SKNLUuFW4jtM4ed3IsS3bm+YkkIOt8P1+SJ8k=; h=Resent-From:Resent-Date:Resent-To:Date:To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=N2d6unSIhCEijQ4qWAxYJZPwWzAgi3p5MGUW3Eq4fhD9S384P87duTP1Ui4DIfV1m 34hSLsMJVbnwSmLLJjTfMQiqcuz2tOVAJ/xC7p/HDWDVZFAdb/YNfkGQETNA73dSXk fK34cUQTo/gg2J9+Sl5yURGxzaN8ZrZkcBCCi6MM= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org 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 6B775385840F for ; Fri, 12 Aug 2022 09:03:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6B775385840F 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-284-J5iH-qviPQaA1oMRQuB33g-1; Fri, 12 Aug 2022 05:03:57 -0400 X-MC-Unique: J5iH-qviPQaA1oMRQuB33g-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A144685A584 for ; Fri, 12 Aug 2022 09:03:57 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.39.192.41]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 613052166B26; Fri, 12 Aug 2022 09:03:57 +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 27C93tAd3995554 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Fri, 12 Aug 2022 11:03:55 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.17.1/8.17.1/Submit) id 27C93sTk3995553; Fri, 12 Aug 2022 11:03:54 +0200 Resent-From: Jakub Jelinek Resent-Date: Fri, 12 Aug 2022 11:03:54 +0200 Resent-Message-ID: Resent-To: gcc-patches@gcc.gnu.org, Sam Feifer Date: Thu, 11 Aug 2022 10:34:00 +0200 To: gcc-patches@gcc.gnu.org Subject: [committed] testsuite: Fix up pr106243* tests on i686-linux [PR106243] Message-ID: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline X-Spam-Status: No, score=-3.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Jakub Jelinek via Gcc-patches From: Jakub Jelinek Reply-To: Jakub Jelinek Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" Hi! These 2 tests were FAILing on i686-linux or e.g. with --target_board=unix/-m32/-mno-sse on x86_64-linux due to -Wpsabi warnings. Tested with make check-gcc check-g++ RUNTESTFLAGS='--target_board=unix\{-m32,-m32/-mno-sse,-m64\} dg.exp=pr106243*' on x86_64-linux, committed to trunk as obvious. 2022-08-11 Jakub Jelinek PR tree-optimization/106243 * gcc.dg/pr106243.c: Add -Wno-psabi to dg-options. * gcc.dg/pr106243-1.c: Likewise. Jakub --- gcc/testsuite/gcc.dg/pr106243.c.jj 2022-08-10 09:06:52.955213523 +0200 +++ gcc/testsuite/gcc.dg/pr106243.c 2022-08-11 10:13:52.965111058 +0200 @@ -1,6 +1,6 @@ /* PR tree-optimization/106243 */ /* { dg-do compile } */ -/* { dg-options "-O2 -fdump-tree-optimized" } */ +/* { dg-options "-O2 -Wno-psabi -fdump-tree-optimized" } */ #define vector __attribute__((vector_size(4*sizeof(int)))) --- gcc/testsuite/gcc.dg/pr106243-1.c.jj 2022-08-10 09:06:52.955213523 +0200 +++ gcc/testsuite/gcc.dg/pr106243-1.c 2022-08-11 10:14:06.381931542 +0200 @@ -1,6 +1,6 @@ /* PR tree-optimization/106243 */ /* { dg-do run } */ -/* { dg-options "-O2" } */ +/* { dg-options "-O2 -Wno-psabi" } */ #include "pr106243.c"