patches/binutils/2.22/400-fix_arm_gc_sections.patch
author Florian Fainelli <f.fainelli@gmail.com>
Wed Sep 19 10:40:50 2012 +0200 (2012-09-19)
changeset 3051 a7e9fb84c7a0
permissions -rw-r--r--
binutils/binutils: backport upstream fix for binutils 2.22 ld bug 14189

See http://sourceware.org/bugzilla/show_bug.cgi?id=14189 for more information.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
     1 --- a/bfd/elf32-arm.c
     2 +++ b/bfd/elf32-arm.c
     3 @@ -12408,7 +12408,8 @@ elf32_arm_check_relocs (bfd *abfd, struc
     4  
     5  	  /* If the symbol is a function that doesn't bind locally,
     6  	     this relocation will need a PLT entry.  */
     7 -	  root_plt->refcount += 1;
     8 +	  if (root_plt->refcount != -1)
     9 +	    root_plt->refcount += 1;
    10  
    11  	  if (!call_reloc_p)
    12  	    arm_plt->noncall_refcount++;