diff options
author | Alan Modra <amodra@gmail.com> | 2006-12-06 07:25:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-12-06 07:25:29 +0000 |
commit | 747ffa7b00319aca2831228a2ed73c6b1bf7b736 (patch) | |
tree | 169e3c5b3a5eb9c3ea6ca32ef08753781362c16c /bfd/elf64-alpha.c | |
parent | b3d379e410a11d5772f275ac35a3666212f8941f (diff) | |
download | gdb-747ffa7b00319aca2831228a2ed73c6b1bf7b736.zip gdb-747ffa7b00319aca2831228a2ed73c6b1bf7b736.tar.gz gdb-747ffa7b00319aca2831228a2ed73c6b1bf7b736.tar.bz2 |
* elf64-alpha.c (elf64_alpha_merge_symbol_attribute): New function.
(elf_backend_merge_symbol_attribute): Define.
Diffstat (limited to 'bfd/elf64-alpha.c')
-rw-r--r-- | bfd/elf64-alpha.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index 1f7e546..5732823 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -2035,6 +2035,19 @@ elf64_alpha_adjust_dynamic_symbol (struct bfd_link_info *info, return TRUE; } +/* Record STO_ALPHA_NOPV and STO_ALPHA_STD_GPLOAD. */ + +static void +elf64_alpha_merge_symbol_attribute (struct elf_link_hash_entry *h, + const Elf_Internal_Sym *isym, + bfd_boolean definition, + bfd_boolean dynamic) +{ + if (!dynamic && definition) + h->other = ((h->other & ELF_ST_VISIBILITY (-1)) + | (isym->st_other & ~ELF_ST_VISIBILITY (-1))); +} + /* Symbol versioning can create new symbols, and make our old symbols indirect to the new ones. Consolidate the got and reloc information in these situations. */ @@ -5271,6 +5284,8 @@ static const struct elf_size_info alpha_elf_size_info = elf64_alpha_create_dynamic_sections #define elf_backend_adjust_dynamic_symbol \ elf64_alpha_adjust_dynamic_symbol +#define elf_backend_merge_symbol_attribute \ + elf64_alpha_merge_symbol_attribute #define elf_backend_always_size_sections \ elf64_alpha_always_size_sections #define elf_backend_size_dynamic_sections \ |