From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5451 invoked by alias); 31 Aug 2004 05:04:03 -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 5439 invoked from network); 31 Aug 2004 05:04:01 -0000 Received: from unknown (HELO mx2.redhat.com) (66.187.237.31) by sourceware.org with SMTP; 31 Aug 2004 05:04:01 -0000 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.12.10/8.12.10) with ESMTP id i7V53el3031710; Tue, 31 Aug 2004 01:03:40 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i7V53e712953; Tue, 31 Aug 2004 01:03:40 -0400 Received: from frothingslosh.sfbay.redhat.com (frothingslosh.sfbay.redhat.com [172.16.24.27]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id i7V53eV15439; Mon, 30 Aug 2004 22:03:40 -0700 Received: from frothingslosh.sfbay.redhat.com (localhost.localdomain [127.0.0.1]) by frothingslosh.sfbay.redhat.com (8.12.10/8.12.10) with ESMTP id i7V53eOo004738; Mon, 30 Aug 2004 22:03:40 -0700 Received: (from rth@localhost) by frothingslosh.sfbay.redhat.com (8.12.10/8.12.10/Submit) id i7V53eEt004736; Mon, 30 Aug 2004 22:03:40 -0700 X-Authentication-Warning: frothingslosh.sfbay.redhat.com: rth set sender to rth@redhat.com using -f Date: Tue, 31 Aug 2004 07:38:00 -0000 From: Richard Henderson To: Mike Stump Cc: Daniel Jacobowitz , "gcc@gcc.gnu.org List" Subject: Re: binds_local question Message-ID: <20040831050340.GB4683@redhat.com> Mail-Followup-To: Richard Henderson , Mike Stump , Daniel Jacobowitz , "gcc@gcc.gnu.org List" References: <8296A215-FAE2-11D8-8516-000393941EE6@apple.com> <20040831003313.GA6652@nevyn.them.org> <0D87DC80-FAF1-11D8-8516-000393941EE6@apple.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0D87DC80-FAF1-11D8-8516-000393941EE6@apple.com> User-Agent: Mutt/1.4.1i X-SW-Source: 2004-08/txt/msg01588.txt.bz2 On Mon, Aug 30, 2004 at 06:57:02PM -0700, Mike Stump wrote: > machopic_symbol_defined_p (rtx sym_ref) > { > - return ((SYMBOL_REF_FLAGS (sym_ref) & MACHO_SYMBOL_FLAG_DEFINED) > - /* Local symbols must always be defined. */ > - || SYMBOL_REF_LOCAL_P (sym_ref)); > + /* APPLE LOCAL machopic_symbol_defined_p bugfix */ > + return (SYMBOL_REF_FLAGS (sym_ref) & MACHO_SYMBOL_FLAG_DEFINED); > } >From the names of the symbols involved, this looks correct. r~