From: H.J. Lu Date: Fri, 2 Oct 2020 10:08:19 +0000 (+0100) Subject: Allow note sections to be discarded when they are linked to another discarded secction. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7026832e52cff026f877616ac0033c7bb8d1df6f;p=binutils-gdb.git Allow note sections to be discarded when they are linked to another discarded secction. PR 26681 bfd * elflink.c (bfd_elf_gc_sections): Do not arbitrarily keep note sections which are linked to another section. ld * testsuite/ld-elf/pr26681.s: New test. * testsuite/ld-elf/pr26681.d: New test driver. * testsuite/ld-elf/pr26681.l: New test output. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 317c0d39d86..623cb8a188b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2020-10-02 H.J. Lu + + PR 26681 + * elflink.c (bfd_elf_gc_sections): Do not arbitrarily keep note + sections which are linked to another section. + 2020-09-28 Przemyslaw Wirkus * cpu-arm.c: (processors) Add Cortex-X1. diff --git a/bfd/elflink.c b/bfd/elflink.c index b6937293e8f..e23d189b983 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -14102,7 +14102,8 @@ bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info) || (elf_section_data (o)->this_hdr.sh_type == SHT_FINI_ARRAY))) || (elf_section_data (o)->this_hdr.sh_type == SHT_NOTE - && elf_next_in_group (o) == NULL ))) + && elf_next_in_group (o) == NULL + && elf_linked_to_section (o) == NULL))) { if (!_bfd_elf_gc_mark (info, o, gc_mark_hook)) return FALSE; diff --git a/ld/ChangeLog b/ld/ChangeLog index 134db8cdac8..a6beac08449 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2020-10-01 H.J. Lu + + PR 26681 + * testsuite/ld-elf/pr26681.s: New test. + * testsuite/ld-elf/pr26681.d: New test driver. + * testsuite/ld-elf/pr26681.l: New test output. + 2020-09-30 H.J. Lu PR ld/26675 diff --git a/ld/testsuite/ld-elf/pr26681.d b/ld/testsuite/ld-elf/pr26681.d new file mode 100644 index 00000000000..01c1ce89fb5 --- /dev/null +++ b/ld/testsuite/ld-elf/pr26681.d @@ -0,0 +1,3 @@ +#ld: --gc-sections --print-gc-sections -e _start +#warning_output: pr26681.l +#target: [check_gc_sections_available] diff --git a/ld/testsuite/ld-elf/pr26681.l b/ld/testsuite/ld-elf/pr26681.l new file mode 100644 index 00000000000..05da9b2451f --- /dev/null +++ b/ld/testsuite/ld-elf/pr26681.l @@ -0,0 +1,5 @@ +#... +.*: removing unused section '\.unused1' in file 'tmpdir/.*\.o' +#... +.*: removing unused section '\.gnu.note1' in file 'tmpdir/.*\.o' +#... diff --git a/ld/testsuite/ld-elf/pr26681.s b/ld/testsuite/ld-elf/pr26681.s new file mode 100644 index 00000000000..0417bed9d0d --- /dev/null +++ b/ld/testsuite/ld-elf/pr26681.s @@ -0,0 +1,10 @@ + .text + .globl _start +_start: + .nop + + .section .unused1, "ax", %progbits + .nop + + .section .gnu.note1, "o", %note, .unused1 + .word 2