This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


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

Re: binutils 2.11-CVS won't link GCC 3.0-snap's libobjc.so on Red Hat


On Tue, Jul 10, 2001 at 09:39:50PM -0700, H . J . Lu wrote:
> -						 ((sec->flags & (SEC_ALLOC
> -								 | SEC_LOAD))
> +						 (((sec->flags
> +						    & SEC_DEBUGGING)
> +						   ? (sec->flags
> +						      & (SEC_ALLOC
> +							 | SEC_LOAD))
> +						   : (SEC_ALLOC
> +						      | SEC_LOAD))

Why should SEC_DEBUGGING be involved?  Why not

	sec->flags & SEC_ALLOC ? SEC_ALLOC | SEC_LOAD : 0


r~


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