]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - bfd/ChangeLog
BFD: Exclude sections with no content from compress check.
authorTamar Christina <tamar.christina@arm.com>
Tue, 21 Apr 2020 14:16:21 +0000 (15:16 +0100)
committerTamar Christina <tamar.christina@arm.com>
Tue, 21 Apr 2020 14:17:18 +0000 (15:17 +0100)
commitc36876fe5b5bac1c404ab2ca82bfbfb2ed9a2717
tree4b3429655b130049683dd52267c000d246f408c5
parent39a7b38fac0e6e90baa3d661a271377db3ba1765
BFD: Exclude sections with no content from compress check.

The check in bfd_get_full_section_contents is trying to check that we don't
allocate more space for a section than the size of the section is on disk.

Previously we excluded linker created sections since they didn't have a size on
disk.  However we also need to exclude sections with no content as well such as
the BSS section.  Space for these would not have been allocated by the assembler
and so the check would incorrectly fail.

bfd/ChangeLog:

PR binutils/24753
* compress.c (bfd_get_full_section_contents): Exclude sections with no
content.

gas/ChangeLog:

PR binutils/24753
* testsuite/gas/arm/pr24753.d: New test.
* testsuite/gas/arm/pr24753.s: New test.
bfd/ChangeLog
bfd/compress.c
gas/ChangeLog
gas/testsuite/gas/arm/pr24753.d [new file with mode: 0644]
gas/testsuite/gas/arm/pr24753.s [new file with mode: 0644]