From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5865 invoked by alias); 15 Oct 2011 08:32:47 -0000 Received: (qmail 5857 invoked by uid 22791); 15 Oct 2011 08:32:46 -0000 X-SWARE-Spam-Status: No, hits=0.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,MEDICAL_SUBJECT,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-yw0-f47.google.com (HELO mail-yw0-f47.google.com) (209.85.213.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 15 Oct 2011 08:32:24 +0000 Received: by ywf7 with SMTP id 7so3375993ywf.20 for ; Sat, 15 Oct 2011 01:32:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.236.129.228 with SMTP id h64mr16696915yhi.101.1318667543800; Sat, 15 Oct 2011 01:32:23 -0700 (PDT) Received: by 10.147.116.13 with HTTP; Sat, 15 Oct 2011 01:32:23 -0700 (PDT) In-Reply-To: References: Date: Sat, 15 Oct 2011 10:45:00 -0000 Message-ID: Subject: Re: [PATCH, testsuite, i386] FMA3 testcases + typo fix in MD From: Uros Bizjak To: Andreas Schwab Cc: Kirill Yukhin , gcc-patches List , "H.J. Lu" , vbyakovl23@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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 X-SW-Source: 2011-10/txt/msg01370.txt.bz2 On Sat, Oct 15, 2011 at 10:14 AM, Andreas Schwab wr= ote: >> --- /dev/null >> +++ b/gcc/testsuite/gcc.target/i386/fma_double_1.c >> @@ -0,0 +1,19 @@ >> +/* { dg-do compile } */ >> +/* { dg-prune-output ".*warning: 'sseregparm' attribute ignored.*" } */ > > That prunes too much. =A0gcc-dg-prune brackets the regexp so that it only > matches within a single line, but your use of ".*" (which also matches > newlines) overrides that and will cause the *whole* output to be thrown > away, including any unrelated error messages. Perhaps e can add -Wno-attributes to dg-options and remove dg-prune-output. I will look at this possibility and create a patch. Uros.