From patchwork Wed Oct 2 15:06:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Jambor X-Patchwork-Id: 1170743 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-510077-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="FdCJfDlv"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46jzxt3sntz9sPc for ; Thu, 3 Oct 2019 01:06:56 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; q=dns; s=default; b=YyBvcPrQtXBg7F3LXYgiQAynrr6HbboIacAhUFamcpbuGpHRTN CvJqmgEeDswa41mmRDkQopXRX3cE/HWayOpOnaZ2VJxZMEZcGNLC2KlbPEDxxElr XASpDpepzvojnCYonPqHPZAVxJpybWF9ppr/DOG0hdZTSW4csmWeadDWo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; s= default; bh=kO8X1PQl3zGA1KkGGZ47sDmi1Qk=; b=FdCJfDlvLKVgT12bR9Ug ey3ARioIEYUGcL/FcFl9orxxuH0UgOn0YomyQxR9EEWLpP0pIp8+4XFTDgE2nMUE z97+SPloYWuYX/udHkO5ZM4kKc9MgoKZG0q5fwKw/7dnHit9fbob4w0bPtiNFUcN XunVV/1AOx04UkfYWyihqkk= Received: (qmail 65604 invoked by alias); 2 Oct 2019 15:06:49 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 65594 invoked by uid 89); 2 Oct 2019 15:06:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-19.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 02 Oct 2019 15:06:48 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 6412AABBE for ; Wed, 2 Oct 2019 15:06:46 +0000 (UTC) From: Martin Jambor To: GCC Patches Cc: Subject: [PR testsuite/91842] Skip gcc.dg/ipa/ipa-sra-19.c on power User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.3 (x86_64-suse-linux-gnu) Date: Wed, 02 Oct 2019 17:06:45 +0200 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Hi, I seem to remember I minimized gcc.dg/ipa/ipa-sra-19.c on power but perhaps I am wrong because the testcase fails there with a power-specific error: gcc.dg/ipa/ipa-sra-19.c:19:3: error: AltiVec argument passed to unprototyped function I am going to simply skip it there with the following patch, which I hope is obvious. Tested by running ipa.exp on both ppc64le-linux and x86_64-linux. Thanks, Martin diff --git a/gcc/testsuite/gcc.dg/ipa/ipa-sra-19.c b/gcc/testsuite/gcc.dg/ipa/ipa-sra-19.c index adebaa5f5e1..d219411d8ba 100644 --- a/gcc/testsuite/gcc.dg/ipa/ipa-sra-19.c +++ b/gcc/testsuite/gcc.dg/ipa/ipa-sra-19.c @@ -1,5 +1,6 @@ /* { dg-do compile } */ /* { dg-options "-O2" } */ +/* { dg-skip-if "" { powerpc*-*-* } } */ typedef int __attribute__((__vector_size__(16))) vectype;