From: Ian Lance Taylor Date: Mon, 29 Jan 1996 18:09:20 +0000 (+0000) Subject: * elflink.h (elf_link_add_object_symbols): Only set weakdef to a X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2bb6c790012b31373abcf852df492d8c698992f;p=binutils-gdb.git * elflink.h (elf_link_add_object_symbols): Only set weakdef to a real defined symbol, not to a weak defined symbol. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 70bc39a23cd..16313a51ff6 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 a6e0f962e31..c656ac12303 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) {