From: Alan Modra Date: Mon, 15 May 2006 02:22:20 +0000 (+0000) Subject: PR 2658 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7de713b9e51c1b283e68168c8bcbaa69384698b1;p=binutils-gdb.git PR 2658 * elf32-ppc.c (ppc_elf_relax_section): Don't segfault on non-pic -shared link. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c64ae218c12..d5e2c7904cc 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2006-05-15 Alan Modra + + PR 2658 + * elf32-ppc.c (ppc_elf_relax_section): Don't segfault on non-pic + -shared link. + 2006-05-11 Michael Matz * elflink.c (match_group_member): Correctly iterate group diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 9ee2bcd8573..9be70f82ce7 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -5181,6 +5181,10 @@ ppc_elf_relax_section (bfd *abfd, else if (r_type != R_PPC_PLTREL24) toff += irel->r_addend; + /* Attempted -shared link of non-pic code loses. */ + if (tsec->output_section == NULL) + continue; + symaddr = tsec->output_section->vma + tsec->output_offset + toff; roff = irel->r_offset;