aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2005-05-08 13:43:48 +0000
committerH.J. Lu <hjl.tools@gmail.com>2005-05-08 13:43:48 +0000
commitcfca085c35a6d1ff0b82fdf53aa732c867db357c (patch)
treeeec8490483da75cf74df8f6ad3373a5b0f0c94a9
parent6006a3a1ec3bfe06d562da123c2c8a3d71291184 (diff)
downloadfsf-binutils-gdb-cfca085c35a6d1ff0b82fdf53aa732c867db357c.zip
fsf-binutils-gdb-cfca085c35a6d1ff0b82fdf53aa732c867db357c.tar.gz
fsf-binutils-gdb-cfca085c35a6d1ff0b82fdf53aa732c867db357c.tar.bz2
2005-05-08 H.J. Lu <hongjiu.lu@intel.com>
PR 939 * elflink.c (elf_link_output_extsym): Use output_bfd if h->root.u.def.section is bfd_abs_section_ptr when reporting error.
-rw-r--r--bfd/ChangeLog7
-rw-r--r--bfd/elflink.c4
2 files changed, 10 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 03b19ab..ee4797d 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2005-05-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR 939
+ * elflink.c (elf_link_output_extsym): Use output_bfd if
+ h->root.u.def.section is bfd_abs_section_ptr when reporting
+ error.
+
2005-05-07 H.J. Lu <hongjiu.lu@intel.com>
* elf-bfd.h (elf_backend_data): Update special_sections to
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 506897b..5c5fb2d 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -6379,7 +6379,9 @@ elf_link_output_extsym (struct elf_link_hash_entry *h, void *data)
{
(*_bfd_error_handler)
(_("%B: %s symbol `%s' in %B is referenced by DSO"),
- finfo->output_bfd, h->root.u.def.section->owner,
+ finfo->output_bfd,
+ h->root.u.def.section == bfd_abs_section_ptr
+ ? finfo->output_bfd : h->root.u.def.section->owner,
ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
? "internal"
: ELF_ST_VISIBILITY (h->other) == STV_HIDDEN