diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-04 05:28:52 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-04 05:28:52 +0000 |
commit | 8d2c33be032d817bfce67cb975bb25fdc28f1c5d (patch) | |
tree | 70192b582b1f3579c343629f30f331d36020c2a1 /bfd/elf64-sh64.c | |
parent | 5b0e55b627d80fe3220036737d639cbba71a3e1e (diff) | |
download | ppe42-binutils-8d2c33be032d817bfce67cb975bb25fdc28f1c5d.tar.gz ppe42-binutils-8d2c33be032d817bfce67cb975bb25fdc28f1c5d.zip |
* elf32-openrisc.c (openrisc_elf_gc_mark_hook): Remove
ATTRIBUTE_UNUSED on used params.
* elf32-vax.c (elf_vax_gc_mark_hook): Remove unnecessary checks
before calling bfd_section_from_elf_index on local syms.
* elf64-sh64.c (sh_elf64_gc_mark_hook): Likewise.
Diffstat (limited to 'bfd/elf64-sh64.c')
-rw-r--r-- | bfd/elf64-sh64.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bfd/elf64-sh64.c b/bfd/elf64-sh64.c index 91762fad34..fb46bce8d8 100644 --- a/bfd/elf64-sh64.c +++ b/bfd/elf64-sh64.c @@ -2481,11 +2481,7 @@ sh_elf64_gc_mark_hook (abfd, info, rel, h, sym) } else { - if (!(elf_bad_symtab (abfd) - && ELF_ST_BIND (sym->st_info) != STB_LOCAL) - && ! ((sym->st_shndx <= 0 || sym->st_shndx >= SHN_LORESERVE) - && sym->st_shndx != SHN_COMMON)) - return bfd_section_from_elf_index (abfd, sym->st_shndx); + return bfd_section_from_elf_index (abfd, sym->st_shndx); } return NULL; |