From: Alan Modra Date: Mon, 10 Aug 2009 07:24:33 +0000 (+0000) Subject: * elf32-ppc.c (ppc_elf_relax_section): Ignore non-code sections. X-Git-Tag: cgen-snapshot-20090901~216 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8ad78a74eb4e3bf77cf6174e5c10a3c30212b3a;p=external%2Fbinutils.git * elf32-ppc.c (ppc_elf_relax_section): Ignore non-code sections. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 8d103cd..cc9850c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,9 @@ 2009-08-10 Alan Modra + * elf32-ppc.c (ppc_elf_relax_section): Ignore non-code sections. + +2009-08-10 Alan Modra + * elflink.c (_bfd_elf_adjust_dynamic_symbol): Don't clear plt info for STT_GNU_IFUNC. * elf32-ppc.c (ppc_elf_check_relocs): Count a needed plt entry diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 542928d..2925039 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -5905,8 +5905,9 @@ ppc_elf_relax_section (bfd *abfd, *again = FALSE; /* Nothing to do if there are no relocations, and no need to do - anything with non-alloc sections. */ + anything with non-alloc or non-code sections. */ if ((isec->flags & SEC_ALLOC) == 0 + || (isec->flags & SEC_CODE) == 0 || (isec->flags & SEC_RELOC) == 0 || isec->reloc_count == 0) return TRUE;