* linker.c (fix_syms): Consider SEC_LOAD when choosing section.

This commit is contained in:
Hans-Peter Nilsson 2009-07-31 02:25:56 +00:00
parent 463bde6807
commit 080a1b9fb5
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-07-31 Hans-Peter Nilsson <hp@bitrange.com>
* linker.c (fix_syms): Consider SEC_LOAD when choosing section.
2009-07-30 Alan Modra <amodra@bigpond.net.au>
* elf32-ppc.c (ppc_elf_check_relocs): Always set up sections

View File

@ -3149,10 +3149,16 @@ fix_syms (struct bfd_link_hash_entry *h, void *data)
else if (op == NULL)
op = op1;
else if (((op1->flags ^ op->flags)
& (SEC_ALLOC | SEC_THREAD_LOCAL)) != 0)
& (SEC_ALLOC | SEC_THREAD_LOCAL | SEC_LOAD)) != 0)
{
if (((op->flags ^ s->flags)
& (SEC_ALLOC | SEC_THREAD_LOCAL)) != 0)
& (SEC_ALLOC | SEC_THREAD_LOCAL)) != 0
/* We prefer to choose a loaded section. Section S
doesn't have SEC_LOAD set (it being excluded, that
part of the flag processing didn't happen) so we
can't compare that flag to those of OP and OP1. */
|| ((op1->flags & SEC_LOAD) != 0
&& (op->flags & SEC_LOAD) == 0))
op = op1;
}
else if (((op1->flags ^ op->flags) & SEC_READONLY) != 0)