patches/binutils/2.22/400-fix_arm_gc_sections.patch
author Titus von Boxberg <titus@v9g.de>
Tue Nov 06 17:02:06 2012 +0100 (2012-11-06)
changeset 3103 a8bf927f6e37
permissions -rw-r--r--
Makefile.in: Use only standard options compatible with BSD install

Don't use options specific to FSF's coreutils install.

Signed-off-by: Titus von Boxberg <titus@v9g.de>
Message-Id: <51587db99510a9ec08f8.1352226968@tschetwerikow.boxberg.lan>
Patchwork-Id: 197532
f@3051
     1
--- a/bfd/elf32-arm.c
f@3051
     2
+++ b/bfd/elf32-arm.c
f@3051
     3
@@ -12408,7 +12408,8 @@ elf32_arm_check_relocs (bfd *abfd, struc
f@3051
     4
 
f@3051
     5
 	  /* If the symbol is a function that doesn't bind locally,
f@3051
     6
 	     this relocation will need a PLT entry.  */
f@3051
     7
-	  root_plt->refcount += 1;
f@3051
     8
+	  if (root_plt->refcount != -1)
f@3051
     9
+	    root_plt->refcount += 1;
f@3051
    10
 
f@3051
    11
 	  if (!call_reloc_p)
f@3051
    12
 	    arm_plt->noncall_refcount++;