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]
Other format: [Raw text]

Re: More HP-UX IA64 changes


On Wed, Dec 19, 2001 at 02:28:25PM -0800, Steve Ellcey wrote:
> 
> +  if (elfNN_ia64_hpux_vec (abfd->xvec)
> +      && !strcmp(name,ELF_STRING_ia64_unwind_hdr))
> +    return false;

Space after function name and comma.

> @@ -1331,7 +1356,7 @@ elfNN_ia64_additional_program_headers (a
>  
>    /* Count how many PT_IA_64_UNWIND segments we need.  */
>    for (s = abfd->sections; s; s = s->next)
> -    if (is_unwind_section_name(s->name) && (s->flags & SEC_LOAD))
> +    if (is_unwind_section_name(abfd, s->name) && (s->flags & SEC_LOAD))

Space after function name again.  OK, it's a pre-existing format error,
but code appearing in diffs gets scrutinized.

> +/* Copy backend specific data from one object module to another */
> +static boolean
> +elfNN_ia64_copy_private_bfd_data (ibfd, obfd)

Function is redundant with H.J.'s 2001-12-18 change.


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