* ecoff.c (ecoff_slurp_armap): From Arne Henrik Juul

<arnej@kari.fm.unit.no>: Handle a COFF style armap.
This commit is contained in:
Ian Lance Taylor 1993-08-06 16:39:44 +00:00
parent 9242112213
commit 8c11363a29
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Fri Aug 6 12:28:38 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* ecoff.c (ecoff_slurp_armap): From Arne Henrik Juul
<arnej@kari.fm.unit.no>: Handle a COFF style armap.
Fri Aug 6 09:59:45 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
* hpux-core.c: Cast return value from bfd_zalloc.

View File

@ -3947,6 +3947,14 @@ ecoff_slurp_armap (abfd)
bfd_seek (abfd, (file_ptr) -16, SEEK_CUR);
/* Irix 4.0.5F apparently can use either an ECOFF armap or a
standard COFF armap. We could move the ECOFF armap stuff into
bfd_slurp_armap, but that seems inappropriate since no other
target uses this format. Instead, we check directly for a COFF
armap. */
if (strncmp (nextname, "/ ", 16) == 0)
return bfd_slurp_armap (abfd);
/* See if the first element is an armap. */
if (strncmp (nextname, ecoff_backend (abfd)->armap_start,
ARMAP_START_LENGTH) != 0