forked from Imagelibrary/binutils-gdb
Re: commit eae0b5c3b2
PR 26416 * elf64-alpha.c (elf64_alpha_relax_tls_get_addr): Correct "dynamic".
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2020-08-27 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 26416
|
||||
* elf64-alpha.c (elf64_alpha_relax_tls_get_addr): Correct "dynamic".
|
||||
|
||||
2020-08-26 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 26433
|
||||
|
||||
@@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user