From patchwork Fri Apr 6 15:07:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Stump X-Patchwork-Id: 151192 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 74228B7097 for ; Sat, 7 Apr 2012 01:08:00 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1334329680; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: From:Content-Type:Subject:Date:Message-Id:To:Mime-Version: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=Lpxs4GaWuUa0EASmX97G EgOhQEY=; b=HdreKRRA87GeuuywMilYwWTOQhWF1+HvCW9CfD9clF54mSskB/sO Tz7vW/Okp2DKVo10oO4SMNKIuVSaVe6lRKAr7A3MaZOLz54wJR/LzRE69Mf5UtMT CCYNloFQ3RMA4rfj1Ea9mUbt3PFNG/V+pei3cDUE3cySowucM/xQFhw= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:From:Content-Type:Subject:Date:Message-Id:To:Mime-Version:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=SLgMXiMEcphH4Wx66K8ouQhlqyOHs3NMkdWKzQNmwVX1rOYTDpwy+CuIIkaO6u Q+DdEZqUL2zTCoJXFOotyB85fdypT9BN2bYodoevlMUL5F1B7FMdss7Zm3sHELN4 Fg9XeUxcDH5sIzvb5obt+vhgMl0ZeXZPC3bGQoqIFAc1g=; Received: (qmail 25023 invoked by alias); 6 Apr 2012 15:07:56 -0000 Received: (qmail 25015 invoked by uid 22791); 6 Apr 2012 15:07:55 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RCVD_IN_HOSTKARMA_NO, RCVD_IN_HOSTKARMA_YE, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from qmta02.westchester.pa.mail.comcast.net (HELO qmta01.westchester.pa.mail.comcast.net) (76.96.62.24) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 06 Apr 2012 15:07:42 +0000 Received: from omta23.westchester.pa.mail.comcast.net ([76.96.62.74]) by qmta01.westchester.pa.mail.comcast.net with comcast id uboS1i0081c6gX851f7ihq; Fri, 06 Apr 2012 15:07:42 +0000 Received: from up.mrs.kithrup.com ([24.4.193.8]) by omta23.westchester.pa.mail.comcast.net with comcast id uf7h1i01c0BKwT43jf7iDP; Fri, 06 Apr 2012 15:07:42 +0000 From: Mike Stump Subject: ignore non-portable warning for PR50722 Date: Fri, 6 Apr 2012 08:07:40 -0700 Message-Id: To: Gcc Patch List Mime-Version: 1.0 (Apple Message framework v1084) X-IsSubscribed: yes 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 The suggestion was made in the PR to use -w; found this by testing on such a target, and didn't want to endlessly add systems to the skip list. 2012-04-06 Mike Stump PR testsuite/50722 * gcc.dg/pr49994-3.c: Use -w to squelch non-portable warnings. Index: gcc.dg/pr49994-3.c =================================================================== --- gcc.dg/pr49994-3.c (revision 186111) +++ gcc.dg/pr49994-3.c (working copy) @@ -1,8 +1,7 @@ /* { dg-do compile } */ -/* { dg-options "-O2 -fsched2-use-superblocks -g" } */ +/* { dg-options "-O2 -fsched2-use-superblocks -g -w" } */ /* { dg-options "-O2 -fsched2-use-superblocks -g -mbackchain" { target s390*-*-* } } */ /* { dg-require-effective-target scheduling } */ -/* { dg-skip-if "PR testsuite/50722" { ia64-*-*-* hppa*-*-* *-*-hpux* } } */ void * foo (int offset) Index: ChangeLog =================================================================== --- ChangeLog (revision 186193) +++ ChangeLog (working copy) @@ -1,3 +1,8 @@ +2012-04-06 Mike Stump + + PR testsuite/50722 + * gcc.dg/pr49994-3.c: Use -w to squelch non-portable warnings. + 2012-04-05 Jason Merrill PR c++/52596