OSDN Git Service

PR 2658
authorAlan Modra <amodra@bigpond.net.au>
Mon, 15 May 2006 02:22:20 +0000 (02:22 +0000)
committerAlan Modra <amodra@bigpond.net.au>
Mon, 15 May 2006 02:22:20 +0000 (02:22 +0000)
* elf32-ppc.c (ppc_elf_relax_section): Don't segfault on non-pic
-shared link.

bfd/ChangeLog
bfd/elf32-ppc.c

index c64ae21..d5e2c79 100644 (file)
@@ -1,3 +1,9 @@
+2006-05-15  Alan Modra  <amodra@bigpond.net.au>
+
+       PR 2658
+       * elf32-ppc.c (ppc_elf_relax_section): Don't segfault on non-pic
+       -shared link.
+
 2006-05-11  Michael Matz  <matz@suse.de>
 
        * elflink.c (match_group_member): Correctly iterate group
index 9ee2bcd..9be70f8 100644 (file)
@@ -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;