From d2bb6c790012b31373abcf852df492d8c698992f Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 29 Jan 1996 18:09:20 +0000 Subject: [PATCH] * elflink.h (elf_link_add_object_symbols): Only set weakdef to a real defined symbol, not to a weak defined symbol. --- bfd/ChangeLog | 5 +++++ bfd/elflink.h | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 70bc39a23c..16313a51ff 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 29 13:06:28 1996 Ian Lance Taylor + + * elflink.h (elf_link_add_object_symbols): Only set weakdef to a + real defined symbol, not to a weak defined symbol. + Mon Jan 29 11:34:36 1996 Kim Knuttila * cofflink.c: removed the POWERPC_LE_PE hack, promoted some types diff --git a/bfd/elflink.h b/bfd/elflink.h index a6e0f962e3..c656ac1230 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -868,8 +868,7 @@ elf_link_add_object_symbols (abfd, info) h = *hpp; if (h != NULL && h != hlook - && (h->root.type == bfd_link_hash_defined - || h->root.type == bfd_link_hash_defweak) + && h->root.type == bfd_link_hash_defined && h->root.u.def.section == slook && h->root.u.def.value == vlook) {