From: Daniel Jacobowitz Date: Wed, 3 Mar 2010 17:56:24 +0000 (+0000) Subject: * elf32-arm.c (elf32_arm_output_arch_local_syms): Do not add X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=501abfe0387ec3525a997fbf233717f2d5d9d74a;p=binutils-gdb.git * elf32-arm.c (elf32_arm_output_arch_local_syms): Do not add a mapping symbol to an empty section. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d1ce00c365d..f592fbb1d0a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2010-03-03 Daniel Jacobowitz + + * elf32-arm.c (elf32_arm_output_arch_local_syms): Do not add + a mapping symbol to an empty section. + 2010-03-02 Matthew Gretton-Dann * elf32-arm.c (elf32_arm_merge_eabi_attributes): Add a check of the diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 29fb29580f3..c2a9987b83b 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -13175,7 +13175,8 @@ elf32_arm_output_arch_local_syms (bfd *output_bfd, && (osi.sec->flags & (SEC_HAS_CONTENTS | SEC_LINKER_CREATED)) == SEC_HAS_CONTENTS && get_arm_elf_section_data (osi.sec) != NULL - && get_arm_elf_section_data (osi.sec)->mapcount == 0) + && get_arm_elf_section_data (osi.sec)->mapcount == 0 + && osi.sec->size > 0) { osi.sec_shndx = _bfd_elf_section_from_bfd_section (output_bfd, osi.sec->output_section);