From 5dd23ec18b479cbc2150f28168a1b95fd4e80aaa Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 28 May 2004 20:30:29 +0000 Subject: [PATCH] 2004-05-28 H.J. Lu * elfxx-ia64.c (elfNN_ia64_relax_section): Properly call _bfd_merged_section_offset for local symbols. --- bfd/ChangeLog | 5 +++++ bfd/elfxx-ia64.c | 23 ++++++++++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index de25c0a55d..0178acddf2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2004-05-28 H.J. Lu + + * elfxx-ia64.c (elfNN_ia64_relax_section): Properly call + _bfd_merged_section_offset for local symbols. + 2004-05-28 Andrew Stubbs * Makefile.am: Regenerate dependencies. diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index 26b2e45548..f72df9e1f1 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -864,6 +864,15 @@ elfNN_ia64_relax_section (abfd, sec, link_info, again) toff = isym->st_value; dyn_i = get_dyn_sym_info (ia64_info, NULL, abfd, irel, FALSE); + + if ((tsec->flags & SEC_MERGE) + && ELF_ST_TYPE (isym->st_info) == STT_SECTION + && tsec->sec_info_type == ELF_INFO_TYPE_MERGE) + toff = _bfd_merged_section_offset (abfd, &tsec, + elf_section_data (tsec)->sec_info, + toff + irel->r_addend); + else + toff += irel->r_addend; } else { @@ -908,14 +917,14 @@ elfNN_ia64_relax_section (abfd, sec, link_info, again) tsec = h->root.u.def.section; toff = h->root.u.def.value; } - } - if (tsec->sec_info_type == ELF_INFO_TYPE_MERGE) - toff = _bfd_merged_section_offset (abfd, &tsec, - elf_section_data (tsec)->sec_info, - toff + irel->r_addend); - else - toff += irel->r_addend; + if (tsec->sec_info_type == ELF_INFO_TYPE_MERGE) + toff = _bfd_merged_section_offset (abfd, &tsec, + elf_section_data (tsec)->sec_info, + toff + irel->r_addend); + else + toff += irel->r_addend; + } symaddr = tsec->output_section->vma + tsec->output_offset + toff;