summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-05-21 09:23:07 +0000
committerNick Clifton <nickc@redhat.com>2003-05-21 09:23:07 +0000
commit4b3b032b96395ed8bb8267de490238fa19d97fba (patch)
tree6cb84dd3f421933fbc2ea51a95261f9bc97a3b21
parent17293f12d014d48190e17440d95c75c453b40a16 (diff)
downloadgdb-4b3b032b96395ed8bb8267de490238fa19d97fba.tar.gz
USe is_elf_hash_table() to check for the presence of an elf_link_hash_table
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/elf.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 7e4402be3de..00a20ccebc4 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2003-05-21 Nick Clifton <nickc@redhat.com>
+
+ * elf.c (bfd_elf_get_needed_list): Use is_elf_hash_table to check
+ the type of the has table in the bfd_link_info structure.
+ (bfd_elf_get_runpath_list): Likewise.
+
2003-05-19 Roland McGrath <roland@redhat.com>
* elf.c (bfd_elf_bfd_from_remote_memory): New function.
diff --git a/bfd/elf.c b/bfd/elf.c
index 5e72eb05bf5..66383e7c0d4 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -1616,7 +1616,7 @@ bfd_elf_get_needed_list (abfd, info)
bfd *abfd ATTRIBUTE_UNUSED;
struct bfd_link_info *info;
{
- if (info->hash->creator->flavour != bfd_target_elf_flavour)
+ if (! is_elf_hash_table (info))
return NULL;
return elf_hash_table (info)->needed;
}
@@ -1629,7 +1629,7 @@ bfd_elf_get_runpath_list (abfd, info)
bfd *abfd ATTRIBUTE_UNUSED;
struct bfd_link_info *info;
{
- if (info->hash->creator->flavour != bfd_target_elf_flavour)
+ if (! is_elf_hash_table (info))
return NULL;
return elf_hash_table (info)->runpath;
}