From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29899 invoked by alias); 7 Jul 2011 12:34:19 -0000 Received: (qmail 29838 invoked by uid 22791); 7 Jul 2011 12:34:18 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-pz0-f47.google.com (HELO mail-pz0-f47.google.com) (209.85.210.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 07 Jul 2011 12:34:02 +0000 Received: by pzk36 with SMTP id 36so771086pzk.20 for ; Thu, 07 Jul 2011 05:34:01 -0700 (PDT) MIME-Version: 1.0 Received: by 10.142.242.16 with SMTP id p16mr385803wfh.424.1310042041626; Thu, 07 Jul 2011 05:34:01 -0700 (PDT) Received: by 10.142.107.13 with HTTP; Thu, 7 Jul 2011 05:34:01 -0700 (PDT) Date: Thu, 07 Jul 2011 12:36:00 -0000 Message-ID: Subject: Re: Improve Solaris mudflap support (PR libmudflap/49550) From: Uros Bizjak To: gcc-patches@gcc.gnu.org Cc: Rainer Orth , "Frank Ch. Eigler" Content-Type: text/plain; charset=ISO-8859-1 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-07/txt/msg00466.txt.bz2 Hello! > diff --git a/libmudflap/testsuite/libmudflap.c/pass47-frag.c b/libmudflap/testsuite/libmudflap.c/pass47-frag.c > --- a/libmudflap/testsuite/libmudflap.c/pass47-frag.c > +++ b/libmudflap/testsuite/libmudflap.c/pass47-frag.c > @@ -8,3 +8,5 @@ int main () > tolower (buf[4]) == 'o' && tolower ('X') == 'x' && > isdigit (buf[3])) == 0 && isalnum ('4')); > } > + > +/* { dg-warning "cannot track unknown size extern .__ctype." "Solaris __ctype declared without size" { target *-*-solaris2.* } 0 } */ This is handled differently throughout the mudflap testsuite: /* Ignore a warning that is irrelevant to the purpose of this test. */ /* { dg-prune-output ".*mudflap cannot track unknown size extern.*" } */ Uros.