From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27759 invoked by alias); 15 Mar 2006 19:29:59 -0000 Received: (qmail 27750 invoked by uid 22791); 15 Mar 2006 19:29:58 -0000 X-Spam-Check-By: sourceware.org Received: from palrel11.hp.com (HELO palrel11.hp.com) (156.153.255.246) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 15 Mar 2006 19:29:56 +0000 Received: from smtp1.ptp.hp.com (hpda.cup.hp.com [15.1.28.250]) by palrel11.hp.com (Postfix) with ESMTP id 0AFE936CF1; Wed, 15 Mar 2006 11:29:52 -0800 (PST) Received: from hpsje.cup.hp.com (hpsje.cup.hp.com [16.89.92.85]) by smtp1.ptp.hp.com (Postfix) with ESMTP id E36573BC6B9; Wed, 15 Mar 2006 19:29:51 +0000 (UTC) Received: (from sje@localhost) by hpsje.cup.hp.com (8.9.3 (PHNE_24419+JAGae58098)/8.7.3 TIS Messaging 5.0) id LAA23672; Wed, 15 Mar 2006 11:29:51 -0800 (PST) Date: Wed, 15 Mar 2006 19:29:00 -0000 From: Steve Ellcey Message-Id: <200603151929.LAA23672@hpsje.cup.hp.com> To: roger@eyesopen.com Cc: gcc-patches@gcc.gnu.org, uttamp@us.ibm.com, grigory_zagorodnev@linux.intel.com Subject: Re: Patch ping In-Reply-To: Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2006-03/txt/msg00966.txt.bz2 > Grrr! I was most of the way through an IA-64 bootstrap of a fix > (along the lines of Andrew Pinski's suggestion), when someone at > OpenEye decided to switch off the SGI Altix box I was using (as > the air conditioning in the machine room just gave up). > > I suspect (hope?) that someone will post/commit a fix soon, but > if not I'll get back to it once my Itanium boxes are back online. > > Roger > -- Roger, I did a bootstrap by just removing the last 'if (p_false) free (p_false);' like Grigory suggested and that builds but of course it reintroduces the memory leak. When I did a 'if (predicable_false) free (predicable_false);' before setting predicable_false, I got the following warning that becomes an error when we use -Werror later in the bootstrap: gcc/gensupport.c: In function 'identify_predicable_attribute': gcc/gensupport.c:478: warning: passing argument 1 of 'free' discards qualifiers from pointer target type The declaration of predicable_false is: static const char *predicable_false; I am not sure how to address that. Steve Ellcey sje@cup.hp.com