summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2008-07-21 16:13:27 +0000
committerH.J. Lu <hjl@lucon.org>2008-07-21 16:13:27 +0000
commit6d3564d709d68aeaf68ccc711e45c970e5a0cce8 (patch)
tree84b00abe8bb6b6583ccbe39eea896a80b0b8619f
parent3ba7fb4e251ce62cef35aaf2d228ce8afb2859b4 (diff)
downloadgdb-6d3564d709d68aeaf68ccc711e45c970e5a0cce8.tar.gz
2008-07-21 H.J. Lu <hongjiu.lu@intel.com>
PR ld/4424 * elflink.c (_bfd_elf_merge_symbol): Call bed->relocs_compatible to check if 2 inputs are compatible.
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/elflink.c5
2 files changed, 9 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index dfbd19ffecd..b5967c95e5d 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-21 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/4424
+ * elflink.c (_bfd_elf_merge_symbol): Call bed->relocs_compatible
+ to check if 2 inputs are compatible.
+
2008-07-21 Sterling Augustine <sterling@tensilica.com>
* elf.c (assign_file_positions_for_load_sections): Print vma in
diff --git a/bfd/elflink.c b/bfd/elflink.c
index de1939ac7c8..69a7c6945ce 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -881,9 +881,11 @@ _bfd_elf_merge_symbol (bfd *abfd,
return FALSE;
*sym_hash = h;
+ bed = get_elf_backend_data (abfd);
+
/* This code is for coping with dynamic objects, and is only useful
if we are doing an ELF link. */
- if (info->output_bfd->xvec != abfd->xvec)
+ if (!(*bed->relocs_compatible) (abfd->xvec, info->output_bfd->xvec))
return TRUE;
/* For merging, we only care about real symbols. */
@@ -970,7 +972,6 @@ _bfd_elf_merge_symbol (bfd *abfd,
&& h->root.type != bfd_link_hash_undefweak
&& h->root.type != bfd_link_hash_common);
- bed = get_elf_backend_data (abfd);
/* When we try to create a default indirect symbol from the dynamic
definition with the default version, we skip it if its type and
the type of existing regular definition mismatch. We only do it