aboutsummaryrefslogtreecommitdiff
path: root/bfd/elfcode.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-02-06 21:34:44 +0000
committerIan Lance Taylor <ian@airs.com>1995-02-06 21:34:44 +0000
commit0bef7f7266e0fd2d5dd66a2fa9203ca5c22d2be1 (patch)
tree01be69ebbee7342c6d997298e8c1374818d4afe0 /bfd/elfcode.h
parent484a0896941851de1453eec8e08719b20362880a (diff)
downloadgdb-0bef7f7266e0fd2d5dd66a2fa9203ca5c22d2be1.zip
gdb-0bef7f7266e0fd2d5dd66a2fa9203ca5c22d2be1.tar.gz
gdb-0bef7f7266e0fd2d5dd66a2fa9203ca5c22d2be1.tar.bz2
* libelf.h (ELF_LINK_HASH_DEFINED_WEAK): Don't define.
* elfcode.h (elf_link_add_object_symbols): Don't clear or set ELF_LINK_HASH_DEFINED_WEAK. (elf_link_output_extsym): Don't check ELF_LINK_HASH_DEFINED_WEAK.
Diffstat (limited to 'bfd/elfcode.h')
-rw-r--r--bfd/elfcode.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/bfd/elfcode.h b/bfd/elfcode.h
index 0e61bb3..a99b1d9 100644
--- a/bfd/elfcode.h
+++ b/bfd/elfcode.h
@@ -4435,19 +4435,7 @@ elf_link_add_object_symbols (abfd, info)
with the new definition. */
h->root.type = bfd_link_hash_undefined;
h->root.u.undef.abfd = h->root.u.def.section->owner;
- h->elf_link_hash_flags &=~ ELF_LINK_HASH_DEFINED_WEAK;
}
-
- /* If this is a weak definition which we are going to use,
- and the symbol is currently undefined, record that the
- definition is weak. */
- if (definition
- && (flags & BSF_WEAK) != 0
- && ! bfd_is_und_section (sec)
- && (h->root.type == bfd_link_hash_new
- || h->root.type == bfd_link_hash_undefined
- || h->root.type == bfd_link_hash_undefweak))
- h->elf_link_hash_flags |= ELF_LINK_HASH_DEFINED_WEAK;
}
if (! (_bfd_generic_link_add_one_symbol
@@ -6100,8 +6088,7 @@ elf_link_output_extsym (h, data)
sym.st_size = h->size;
sym.st_other = 0;
if (h->root.type == bfd_link_hash_undefweak
- || h->root.type == bfd_link_hash_defweak
- || (h->elf_link_hash_flags & ELF_LINK_HASH_DEFINED_WEAK) != 0)
+ || h->root.type == bfd_link_hash_defweak)
sym.st_info = ELF_ST_INFO (STB_WEAK, h->type);
else
sym.st_info = ELF_ST_INFO (STB_GLOBAL, h->type);