This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: binds_local question


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~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]