]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)".
authorHans-Peter Nilsson <hp@bitrange.com>
Wed, 1 Apr 2020 02:03:46 +0000 (04:03 +0200)
committerHans-Peter Nilsson <hp@bitrange.com>
Wed, 1 Apr 2020 02:03:46 +0000 (04:03 +0200)
commit7b948a2580d34e7e93bef0527ca853e22515dec4
tree7e880c1a825c9c4172eee617ebee9470796efcda
parent283b7aa1343c29d9c0cdee6312da3d5a61a03f15
mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)".

* mmo.c (mmo_scan): Create .text section only when needed, not
from the start.

For the test-case at hand, the .data section is created and output
first by the linker, but the mmo input-reader mmo_scan always creates
a .text section.  Since sections are output in the order in which
they're created, it's output first, breaking the assumption that
obcopy without options (or with -p) creates output identical to its
input.  The point of creating it at the top of mmo_scan is a trivial
default assignment for the current section variable "sec".  Instead we
now defer the default, creating it only when needed and sec is NULL.
bfd/ChangeLog
bfd/mmo.c