* elf32-arm.c (elf32_arm_output_arch_local_syms): Do not add

a mapping symbol to an empty section.
This commit is contained in:
Daniel Jacobowitz 2010-03-03 17:56:24 +00:00
parent 7e8ccf26e0
commit 501abfe038
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-03-03 Daniel Jacobowitz <dan@codesourcery.com>
* 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 <matthew.gretton-dann@arm.com>
* elf32-arm.c (elf32_arm_merge_eabi_attributes): Add a check of the

View File

@ -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);