diff options
author | Daniel Jacobowitz <drow@false.org> | 2010-03-04 17:16:08 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2010-03-04 17:16:08 +0000 |
commit | f7dd8c79635c8e576cf5138a9ea5b068732cf044 (patch) | |
tree | 0ffdca03592597cc0ef4be7c919a2a6b49dfcfbc | |
parent | ba98da750e0bc7b2b9399945619b0a8ab88cf1cd (diff) | |
download | gdb-f7dd8c79635c8e576cf5138a9ea5b068732cf044.zip gdb-f7dd8c79635c8e576cf5138a9ea5b068732cf044.tar.gz gdb-f7dd8c79635c8e576cf5138a9ea5b068732cf044.tar.bz2 |
* elf32-arm.c (elf32_arm_output_arch_local_syms): Skip non-program
sections.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-arm.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 0d0316e..98e14e7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2010-03-04 Daniel Jacobowitz <dan@codesourcery.com> + + * elf32-arm.c (elf32_arm_output_arch_local_syms): Skip non-program + sections. + 2010-03-04 Alan Modra <amodra@gmail.com> PR 11302 diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index c2a9987..cc9ce59 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -13172,6 +13172,8 @@ elf32_arm_output_arch_local_syms (bfd *output_bfd, osi.sec = osi.sec->next) { if (osi.sec->output_section != NULL + && ((osi.sec->output_section->flags & (SEC_ALLOC | SEC_CODE)) + != 0) && (osi.sec->flags & (SEC_HAS_CONTENTS | SEC_LINKER_CREATED)) == SEC_HAS_CONTENTS && get_arm_elf_section_data (osi.sec) != NULL |