diff options
author | Walter Lee <walt@tilera.com> | 2012-09-20 06:55:02 +0000 |
---|---|---|
committer | Walter Lee <walt@tilera.com> | 2012-09-20 06:55:02 +0000 |
commit | 535127d2b811022d80855b0b57d3f32ab5a3dc9f (patch) | |
tree | 4227b1f0c88eafb9b2aa39f4d28a696b0be21bb2 /bfd/elf32-tilepro.c | |
parent | 2bf680c405655ff9bffa0b80e12e0d73cb7d799e (diff) | |
download | gdb-535127d2b811022d80855b0b57d3f32ab5a3dc9f.zip gdb-535127d2b811022d80855b0b57d3f32ab5a3dc9f.tar.gz gdb-535127d2b811022d80855b0b57d3f32ab5a3dc9f.tar.bz2 |
Fix computation of got relocations for .got sections greater than
0x8000 bytes.
Diffstat (limited to 'bfd/elf32-tilepro.c')
-rw-r--r-- | bfd/elf32-tilepro.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bfd/elf32-tilepro.c b/bfd/elf32-tilepro.c index 90fdace..1c6e3d3 100644 --- a/bfd/elf32-tilepro.c +++ b/bfd/elf32-tilepro.c @@ -2785,6 +2785,7 @@ tilepro_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, Elf_Internal_Shdr *symtab_hdr; struct elf_link_hash_entry **sym_hashes; bfd_vma *local_got_offsets; + bfd_vma got_base; asection *sreloc; Elf_Internal_Rela *rel; Elf_Internal_Rela *relend; @@ -2796,6 +2797,11 @@ tilepro_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, sym_hashes = elf_sym_hashes (input_bfd); local_got_offsets = elf_local_got_offsets (input_bfd); + if (elf_hash_table (info)->hgot == NULL) + got_base = 0; + else + got_base = elf_hash_table (info)->hgot->root.u.def.value; + sreloc = elf_section_data (input_section)->sreloc; rel = relocs; @@ -3086,7 +3092,7 @@ tilepro_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, local_got_offsets[r_symndx] |= 1; } } - relocation = off; + relocation = off - got_base; break; case R_TILEPRO_JOFFLONG_X1_PLT: @@ -3505,7 +3511,7 @@ tilepro_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, if (off >= (bfd_vma) -2) abort (); - relocation = off; + relocation = off - got_base; unresolved_reloc = FALSE; howto = tilepro_elf_howto_table + r_type; break; |