diff options
author | Christophe Lyon <christophe.lyon@st.com> | 2011-09-01 14:10:40 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@st.com> | 2011-09-01 14:10:40 +0000 |
commit | 7d500b8357c0fd219b6a9a9f128d5b982a468cf3 (patch) | |
tree | de281e8f21b8604d86730c412680e024936d311b /bfd | |
parent | df6dc84da93e5fb1e2d7e781c1bac4a8bacc334b (diff) | |
download | gdb-7d500b8357c0fd219b6a9a9f128d5b982a468cf3.zip gdb-7d500b8357c0fd219b6a9a9f128d5b982a468cf3.tar.gz gdb-7d500b8357c0fd219b6a9a9f128d5b982a468cf3.tar.bz2 |
2011-09-01 Christophe Lyon <christophe.lyon@st.com>
bfd/
* elf32-arm.c (elf32_arm_output_arch_local_syms): Skip excluded
sections.
ld/testsuite/
* ld-arm/arm-elf.exp: Add new rodata-merge-map test.
* ld-arm/rodata-merge-map.ld: New file.
* ld-arm/rodata-merge-map.sym: Likewise.
* ld-arm/rodata-merge-map1.s Likewise.
* ld-arm/rodata-merge-map2.s: Likewise.
* ld-arm/rodata-merge-map3.s: Likewise.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-arm.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1bbf84f..7f97fa4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2011-09-01 Christophe Lyon <christophe.lyon@st.com> + + * elf32-arm.c (elf32_arm_output_arch_local_syms): Skip excluded + sections. + 2011-08-26 Nick Clifton <nickc@redhat.com> * po/es.po: Updated Spanish translation. diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 4d407a9..12bbc54 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -14506,7 +14506,8 @@ elf32_arm_output_arch_local_syms (bfd *output_bfd, == SEC_HAS_CONTENTS && get_arm_elf_section_data (osi.sec) != NULL && get_arm_elf_section_data (osi.sec)->mapcount == 0 - && osi.sec->size > 0) + && osi.sec->size > 0 + && (osi.sec->flags & SEC_EXCLUDE) == 0) { osi.sec_shndx = _bfd_elf_section_from_bfd_section (output_bfd, osi.sec->output_section); |