https://sourceware.org/bugzilla/show_bug.cgi?id=26416
--- Comment #4 from Alan Modra <amodra at gmail dot com> --- Never mind, I'm going to commit the following --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -3464,9 +3464,8 @@ elf64_alpha_relax_tls_get_addr (struct alpha_relax_info *info, bfd_vma symval, bfd_boolean dynamic, use_gottprel; unsigned long new_symndx; - if (info->h == NULL) - return TRUE; /* FIXME: Should this be return FALSE ? */ - dynamic = alpha_elf_dynamic_symbol_p (&info->h->root, info->link_info); + dynamic = (info->h != NULL + && alpha_elf_dynamic_symbol_p (&info->h->root, info->link_info)); /* If a TLS symbol is accessed using IE at least once, there is no point to use dynamic model for it. */ -- You are receiving this mail because: You are on the CC list for the bug.