From patchwork Fri Oct 7 19:50:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Janis Johnson X-Patchwork-Id: 118366 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 31285B6F8D for ; Sat, 8 Oct 2011 06:50:40 +1100 (EST) Received: (qmail 1523 invoked by alias); 7 Oct 2011 19:50:36 -0000 Received: (qmail 1515 invoked by uid 22791); 7 Oct 2011 19:50:35 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 07 Oct 2011 19:50:22 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1RCGR4-0006ip-2S from Janis_Johnson@mentor.com for gcc-patches@gcc.gnu.org; Fri, 07 Oct 2011 12:50:22 -0700 Received: from SVR-ORW-FEM-04.mgc.mentorg.com ([147.34.97.41]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 7 Oct 2011 12:39:55 -0700 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-04.mgc.mentorg.com (147.34.97.41) with Microsoft SMTP Server id 14.1.289.1; Fri, 7 Oct 2011 12:50:21 -0700 Message-ID: <4E8F57F8.6040707@mentor.com> Date: Fri, 7 Oct 2011 12:50:16 -0700 From: Janis Johnson Reply-To: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.23) Gecko/20110922 Thunderbird/3.1.15 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" Subject: [testsuite] suppress warnings for powerpc for graphite vector test 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 Test gcc.dg/graphite/id-pr46845.c turns off warnings for x86 targets. powerpc targets warn about ABI issues with vector arguments for this test, so this patch includes powerpc*-*-* in the list of targets to turn off warnings. OK for trunk? 2011-10-07 Janis Johnson * gcc.dg/graphite/id-pr46845.c: Include powerpc for warning options. Index: gcc/testsuite/gcc.dg/graphite/id-pr46845.c =================================================================== --- gcc/testsuite/gcc.dg/graphite/id-pr46845.c (revision 179667) +++ gcc/testsuite/gcc.dg/graphite/id-pr46845.c (working copy) @@ -1,4 +1,4 @@ -/* { dg-options "-O2 -ffast-math -fgraphite-identity -w -Wno-psabi" { target { i?86-*-* x86_64-*-* } } } */ +/* { dg-options "-O2 -ffast-math -fgraphite-identity -w -Wno-psabi" { target { i?86-*-* x86_64-*-* powerpc*-*-* } } } */ typedef float V2SF __attribute__ ((vector_size (128)));