From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11799 invoked by alias); 13 May 2003 20:32:49 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 11041 invoked from network); 13 May 2003 20:32:40 -0000 Received: from unknown (HELO book.moene.indiv.nluug.nl) (195.109.255.217) by sources.redhat.com with SMTP; 13 May 2003 20:32:40 -0000 Received: from local ([127.0.0.1] helo=moene.indiv.nluug.nl) by book.moene.indiv.nluug.nl with esmtp (Exim 3.36 #1 (Debian)) id 19FgP2-0000nq-00; Tue, 13 May 2003 22:29:36 +0200 Message-ID: <3EC1559C.8080601@moene.indiv.nluug.nl> Date: Tue, 13 May 2003 20:32:00 -0000 From: Toon Moene Organization: Moene Computational Physics, Maartensdijk, The Netherlands User-Agent: Mozilla/5.0 (X11; U; Linux ppc; en-US; rv:1.0.0) Gecko/20020622 Debian/1.0.0-0.woody.1 MIME-Version: 1.0 To: Diego Novillo CC: "gcc@gcc.gnu.org" Subject: Re: Daily snapshots of tree-ssa branch available References: <20030509151842.GA1731@tornado.toronto.redhat.com> <3EBCB310.7020201@moene.indiv.nluug.nl> <1052740725.27232.44.camel@frodo.toronto.redhat.com> <3EC01D91.8060703@moene.indiv.nluug.nl> Content-Type: multipart/mixed; boundary="------------080408080902070007070103" X-SW-Source: 2003-05/txt/msg01356.txt.bz2 This is a multi-part message in MIME format. --------------080408080902070007070103 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Content-length: 962 Toon Moene wrote: > Diego Novillo wrote: > >> On Sat, 2003-05-10 at 04:06, Toon Moene wrote: >>> Oh, and you need about a dozen no-warn entries added to >>> gcc/gcc/Makefile.in :-( >> >> Yes. This is an issue we need to fix before merging into mainline. >> GIMPLE tends to emit conditionals that trigger warnings like 'used >> before definition'. I believe that Jason was working on a change that >> would fix this. In any case, for now they are OK to list as no-warn, >> but we will need to remove those settings before merging. Could you add >> these entries near the existing FIXME note when you patch Makefile.in? > > Will work on that when I find some time ... Here ya go: -- Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html GNU Fortran 95: http://gcc-g95.sourceforge.net/ (under construction) --------------080408080902070007070103 Content-Type: text/plain; name="make.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="make.patch" Content-length: 1513 2003-05-13 Toon Moene * Makefile.in: Add additional -Wno-error targets for Alpha. *** Makefile.in.orig Tue May 13 17:54:16 2003 --- Makefile.in Tue May 13 19:29:14 2003 *************** gengtype-lex.o-warn = -Wno-error *** 172,177 **** --- 172,182 ---- # the gimplifier re-writes va_start with a temporary instead of using the # last named argument of the function. + alias.o-warn = -Wno-error bitmap.o-warn = -Wno-error + builtins.o-warn = -Wno-error + caller-save.o-warn = -Wno-error combine.o-warn = -Wno-error + cfgrtl.o-warn = -Wno-error + cse.o-warn = -Wno-error c-semantics.o-warn = -Wno-error c-typeck.o-warn = -Wno-error *************** emit-rtl.o-warn = -Wno-error *** 180,184 **** --- 185,196 ---- expr.o-warn = -Wno-error fold-const.o-warn = -Wno-error + ifcvt.o-warn = -Wno-error genattrtab.o-warn = -Wno-error + jump.o-warn = -Wno-error + local-alloc.o-warn = -Wno-error + ra-build.o-warn = -Wno-error + simplify-rtx.o-warn = -Wno-error + sched-vis.o-warn = -Wno-error + stmt.o-warn = -Wno-error reload1.o-warn = -Wno-error reload.o-warn = -Wno-error *************** rtlanal.o-warn = -Wno-error *** 186,190 **** --- 198,206 ---- tree.o-warn = -Wno-error varasm.o-warn = -Wno-error + f/com.o-warn = -Wno-error + f/equiv.o-warn = -Wno-error f/expr.o-warn = -Wno-error + f/intrin.o-warn = -Wno-error + f/where.o-warn = -Wno-error # The warning for 'prev_file_name' in profile.c is odd. The variable *is* # initialized before being used. --------------080408080902070007070103--