aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2002-06-05 06:50:16 +0000
committerH.J. Lu <hjl.tools@gmail.com>2002-06-05 06:50:16 +0000
commitd4df96e6ca31377d190eed7312b61e072f90a24a (patch)
tree93246b86c4d73d29ab97db3e8aabde21c1608d86 /bfd
parent3cac74d016404e4c8d425af463062b1e2534ec53 (diff)
downloadfsf-binutils-gdb-d4df96e6ca31377d190eed7312b61e072f90a24a.zip
fsf-binutils-gdb-d4df96e6ca31377d190eed7312b61e072f90a24a.tar.gz
fsf-binutils-gdb-d4df96e6ca31377d190eed7312b61e072f90a24a.tar.bz2
2002-06-05 H.J. Lu <hjl@gnu.org>
* elfxx-mips.c (mips_elf_calculate_relocation): Call _bfd_elf_rel_local_sym for STT_SECTION relocations against the SEC_MERGE section.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog6
-rw-r--r--bfd/elfxx-mips.c10
2 files changed, 15 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index f37865d..b0ca9d0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-05 H.J. Lu <hjl@gnu.org>
+
+ * elfxx-mips.c (mips_elf_calculate_relocation): Call
+ _bfd_elf_rel_local_sym for STT_SECTION relocations against
+ the SEC_MERGE section.
+
2002-06-05 Alan Modra <amodra@bigpond.net.au>
* coff-alpha.c: Update copyright date.
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c
index 67179ee..08e1abb 100644
--- a/bfd/elfxx-mips.c
+++ b/bfd/elfxx-mips.c
@@ -2082,8 +2082,16 @@ mips_elf_calculate_relocation (abfd, input_bfd, input_section, info,
sec = local_sections[r_symndx];
symbol = sec->output_section->vma + sec->output_offset;
- if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
+ if (ELF_ST_TYPE (sym->st_info) != STT_SECTION
+ || (sec->flags & SEC_MERGE))
symbol += sym->st_value;
+ if ((sec->flags & SEC_MERGE)
+ && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
+ {
+ addend = _bfd_elf_rel_local_sym (abfd, sym, &sec, addend);
+ addend -= symbol;
+ addend += sec->output_section->vma + sec->output_offset;
+ }
/* MIPS16 text labels should be treated as odd. */
if (sym->st_other == STO_MIPS16)