From: Alan Modra Date: Fri, 31 May 2002 04:19:32 +0000 (+0000) Subject: * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Don't allocate X-Git-Tag: binutils-2_13-branchpoint~624 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f3333946767ea7e69f77552d1350eca3e239bc1;p=external%2Fbinutils.git * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Don't allocate space for bss .plt. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2073604..1de0a13 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2002-05-31 Alan Modra + + * elf64-ppc.c (ppc64_elf_size_dynamic_sections): Don't allocate + space for bss .plt. + 2002-05-31 Graeme Peterson * Makefile.am (BFD32_BACKENDS): Add elf32-i386qnx.lo. diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index ff956a5..565df01 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -3923,6 +3923,10 @@ ppc64_elf_size_dynamic_sections (output_bfd, info) continue; } + /* .plt is in the bss section. We don't initialise it. */ + if ((s->flags & SEC_LOAD) == 0) + continue; + /* Allocate memory for the section contents. We use bfd_zalloc here in case unused entries are not reclaimed before the section's contents are written out. This should not happen,