mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
Fix computation of got relocations for when .got.plt section is merged
with .got. * elf32-tilepro.c (tilepro_elf_relocate_section): Fix computation of got relocations for when .got.plt section is merged with .got. * elfxx-tilegx.c (tilegx_elf_relocate_section): Ditto.
This commit is contained in:
parent
deec9a9d32
commit
901e60ca41
@ -1,3 +1,9 @@
|
||||
2012-09-17 Walter Lee <walt@tilera.com>
|
||||
|
||||
* elf32-tilepro.c (tilepro_elf_relocate_section): Fix computation
|
||||
of got relocations for when .got.plt section is merged with .got.
|
||||
* elfxx-tilegx.c (tilegx_elf_relocate_section): Ditto.
|
||||
|
||||
2012-09-14 David Edelsohn <dje.gcc@gmail.com>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3092,7 +3092,7 @@ tilepro_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_TILEPRO_JOFFLONG_X1_PLT:
|
||||
@ -3511,7 +3511,7 @@ tilepro_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 = tilepro_elf_howto_table + r_type;
|
||||
break;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user