diff options
author | H.J. Lu <hjl@lucon.org> | 2005-08-29 22:25:04 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2005-08-29 22:25:04 +0000 |
commit | 9696c7f67684b6d142653b0ab83f660817c8335c (patch) | |
tree | 047b931c9969d708a4d762a33e374e36ed9eb3b0 /bfd/elfxx-ia64.c | |
parent | 84c746d1a02b8b5e631e2ebe1227335b1a62a13b (diff) | |
download | gdb-9696c7f67684b6d142653b0ab83f660817c8335c.tar.gz |
2005-08-29 H.J. Lu <hongjiu.lu@intel.com>
PR ld/1247
* elfxx-ia64.c (allocate_fptr): Check undefined symbol.
Diffstat (limited to 'bfd/elfxx-ia64.c')
-rw-r--r-- | bfd/elfxx-ia64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index 140a0c970e1..6ba5e2de2e0 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -2775,7 +2775,8 @@ allocate_fptr (dyn_i, data) if (!x->info->executable && (!h || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT - || h->root.type != bfd_link_hash_undefweak)) + || (h->root.type != bfd_link_hash_undefweak + && h->root.type != bfd_link_hash_undefined))) { if (h && h->dynindx == -1) { |