diff options
Diffstat (limited to 'bfd/elfxx-tilegx.c')
-rw-r--r-- | bfd/elfxx-tilegx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elfxx-tilegx.c b/bfd/elfxx-tilegx.c index 3bcdd3a..a57654f 100644 --- a/bfd/elfxx-tilegx.c +++ b/bfd/elfxx-tilegx.c @@ -3479,7 +3479,7 @@ tilegx_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, local_got_offsets[r_symndx] |= 1; } } - relocation = htab->elf.sgot->output_offset + off - got_base; + relocation = off; break; case R_TILEGX_JUMPOFF_X1_PLT: @@ -3926,7 +3926,7 @@ tilegx_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, if (off >= (bfd_vma) -2) abort (); - relocation = htab->elf.sgot->output_offset + off - got_base; + relocation = off; unresolved_reloc = FALSE; howto = tilegx_elf_howto_table + r_type; break; |