From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 124092 invoked by alias); 23 Apr 2015 15:16:32 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 124030 invoked by uid 89); 23 Apr 2015 15:16:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: e9.ny.us.ibm.com Received: from e9.ny.us.ibm.com (HELO e9.ny.us.ibm.com) (32.97.182.139) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 23 Apr 2015 15:16:30 +0000 Received: from /spool/local by e9.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 23 Apr 2015 11:16:28 -0400 Received: from d01dlp01.pok.ibm.com (9.56.250.166) by e9.ny.us.ibm.com (192.168.1.109) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 23 Apr 2015 11:16:25 -0400 Received: from b01cxnp22034.gho.pok.ibm.com (b01cxnp22034.gho.pok.ibm.com [9.57.198.24]) by d01dlp01.pok.ibm.com (Postfix) with ESMTP id D216538C8026 for ; Thu, 23 Apr 2015 11:16:24 -0400 (EDT) Received: from d01av05.pok.ibm.com (d01av05.pok.ibm.com [9.56.224.195]) by b01cxnp22034.gho.pok.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t3NFGOKn60752012 for ; Thu, 23 Apr 2015 15:16:24 GMT Received: from d01av05.pok.ibm.com (localhost [127.0.0.1]) by d01av05.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t3NFGO7o006675 for ; Thu, 23 Apr 2015 11:16:24 -0400 Received: from [9.65.35.4] (sig-9-65-35-4.ibm.com [9.65.35.4]) by d01av05.pok.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t3NFGNZp006643; Thu, 23 Apr 2015 11:16:24 -0400 Message-ID: <1429802184.3459.3.camel@gnopaine> Subject: [PATCH, rs6000, testsuite, committed] Clean up one more test for unaligned loads handling From: Bill Schmidt To: gcc-patches@gcc.gnu.org Cc: dje.gcc@gmail.com Date: Thu, 23 Apr 2015 15:16:00 -0000 Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15042315-0033-0000-0000-00000257226C X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg01424.txt.bz2 Hi, Between the time my unaligned-loads patch was approved and trunk reopened for business, another test showed up that needs to be cleaned up in the same way as the others. This patch does that. Verified on powerpc64le-unknown-linux-gnu, committed as obvious. Thanks, Bill 2015-04-23 Bill Schmidt * gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c: Replace vect_no_align with vect_no_align && { ! vect_hw_misalign }. Index: gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c =================================================================== --- gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c (revision 222362) +++ gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-bb-slp-9a.c (working copy) @@ -38,5 +38,5 @@ int main (void) return 0; } -/* { dg-final { scan-tree-dump-times "basic block vectorized" 1 "slp2" { xfail vect_no_align } } } */ +/* { dg-final { scan-tree-dump-times "basic block vectorized" 1 "slp2" { xfail { vect_no_align && { ! vect_hw_misalign } } } } } */ /* { dg-final { cleanup-tree-dump "slp2" } } */