diff options
author | Alan Modra <amodra@bigpond.net.au> | 2005-02-03 03:30:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2005-02-03 03:30:49 +0000 |
commit | 6a451d1dd2202a6961a021285c53cfb8bb49cf86 (patch) | |
tree | c375baed51f06eee5ffa9639178e55b75ee9ddd9 /include/bfdlink.h | |
parent | 506db9e440a874d4ac6c62b3230f221a97e0840b (diff) | |
download | gdb-6a451d1dd2202a6961a021285c53cfb8bb49cf86.tar.gz |
include/
* bfdlink.h (struct bfd_link_hash_entry): Add u.undef.weak.
bfd/
* linker.c (_bfd_generic_link_add_one_symbol): Set u.undef.weak.
* elflink.c (elf_smash_syms): Restore symbols that were undefweak
before the as-needed lib was loaded. Abort on unexpected refs.
Diffstat (limited to 'include/bfdlink.h')
-rw-r--r-- | include/bfdlink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bfdlink.h b/include/bfdlink.h index 789a38a07db..85b5c195b87 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -113,6 +113,7 @@ struct bfd_link_hash_entry undefined symbol list. */ struct bfd_link_hash_entry *next; bfd *abfd; /* BFD symbol was found in. */ + bfd *weak; /* BFD weak symbol was found in. */ } undef; /* bfd_link_hash_defined, bfd_link_hash_defweak. */ struct |