From b4d040b1587f567d00a4438d12c70d05f4e0ea1b Mon Sep 17 00:00:00 2001 From: "Maciej W. Rozycki" Date: Wed, 1 May 2013 17:18:43 +0000 Subject: [PATCH] * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Use is_elf_hash_table rather than a handcoded condition. --- ld/ChangeLog | 5 +++++ ld/emultempl/elf32.em | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 2c5a4c7..39dc9e7 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2013-05-01 Maciej W. Rozycki + + * emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): + Use is_elf_hash_table rather than a handcoded condition. + 2013-04-30 Nick Clifton * ld.texinfo (SORT_BY_ALIGNMENT): Fix and clarify typo - sections diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 83a554f..dae8605 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1483,7 +1483,7 @@ gld${EMULATION_NAME}_before_allocation (void) asection *sinterp; bfd *abfd; - if (link_info.hash->type == bfd_link_elf_hash_table) + if (is_elf_hash_table (link_info.hash)) _bfd_elf_tls_setup (link_info.output_bfd, &link_info); /* If we are going to make any variable assignments, we need to let -- 2.7.4