aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-10-05 18:40:38 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-10-05 18:40:38 +0000
commitc7bc3ad908c4160ab9120d657b942d128363b828 (patch)
treea8104ec14c7f24145a38cf99482a4b13f2492047 /toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch
parentfbbce1c8d8a7754ad078c35718b97e38d98fb96e (diff)
downloadupstream-c7bc3ad908c4160ab9120d657b942d128363b828.tar.gz
upstream-c7bc3ad908c4160ab9120d657b942d128363b828.tar.bz2
upstream-c7bc3ad908c4160ab9120d657b942d128363b828.zip
binutils: remove old versions
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42776
Diffstat (limited to 'toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch')
-rw-r--r--toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch b/toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch
deleted file mode 100644
index e011c4b111..0000000000
--- a/toolchain/binutils/patches/2.22/500-arm_ld_assert_fix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-See http://sourceware.org/bugzilla/show_bug.cgi?id=13990 for details.
----
---- a/bfd/elf32-arm.c
-+++ b/bfd/elf32-arm.c
-@@ -12046,8 +12046,19 @@ elf32_arm_gc_sweep_hook (bfd *
- if (may_need_local_target_p
- && elf32_arm_get_plt_info (abfd, eh, r_symndx, &root_plt, &arm_plt))
- {
-- BFD_ASSERT (root_plt->refcount > 0);
-- root_plt->refcount -= 1;
-+ /* If PLT refcount book-keeping is wrong and too low, we'll
-+ see a zero value (going to -1) for the root PLT reference
-+ count. */
-+ if (root_plt->refcount >= 0)
-+ {
-+ BFD_ASSERT (root_plt->refcount != 0);
-+ root_plt->refcount -= 1;
-+ }
-+ else
-+ /* A value of -1 means the symbol has become local, forced
-+ or seeing a hidden definition. Any other negative value
-+ is an error. */
-+ BFD_ASSERT (root_plt->refcount == -1);
-
- if (!call_reloc_p)
- arm_plt->noncall_refcount--;