diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfcode.h | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e97ea6e3..f61fd22 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2004-12-11 Alan Modra <amodra@bigpond.net.au> + * elfcode.h (elf_slurp_symbol_table): Use bfd_elf_sym_name so that + canonical sections syms have a name. + +2004-12-11 Alan Modra <amodra@bigpond.net.au> + * elf64-ppc.c (opd_entry_value): Don't use cached relocs if they have been adjusted for output. (ppc64_elf_relocate_section): Mark sections with reloc_done. diff --git a/bfd/elfcode.h b/bfd/elfcode.h index a06b839..0e22c33 100644 --- a/bfd/elfcode.h +++ b/bfd/elfcode.h @@ -1086,9 +1086,7 @@ elf_slurp_symbol_table (bfd *abfd, asymbol **symptrs, bfd_boolean dynamic) memcpy (&sym->internal_elf_sym, isym, sizeof (Elf_Internal_Sym)); sym->symbol.the_bfd = abfd; - sym->symbol.name = bfd_elf_string_from_elf_section (abfd, - hdr->sh_link, - isym->st_name); + sym->symbol.name = bfd_elf_sym_name (abfd, hdr, isym); sym->symbol.value = isym->st_value; @@ -1217,7 +1215,7 @@ error_return: return -1; } -/* Read relocations for ASECT from REL_HDR. There are RELOC_COUNT of +/* Read relocations for ASECT from REL_HDR. There are RELOC_COUNT of them. */ static bfd_boolean |