mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* elf32-tilepro.c (tilepro_elf_finish_dynamic_sections): Don't
set GOT's entry size if there is no ELF section data. * elf64-s390.c (elf_s390_finish_dynamic_sections): Likewise. * elfxx-sparc.c (_bfd_sparc_elf_finish_dynamic_sections): Likewise.
This commit is contained in:
parent
b122423813
commit
387f8054ca
@ -1,3 +1,11 @@
|
||||
2013-08-24 Maciej W. Rozycki <macro@linux-mips.org>
|
||||
|
||||
* elf32-tilepro.c (tilepro_elf_finish_dynamic_sections): Don't
|
||||
set GOT's entry size if there is no ELF section data.
|
||||
* elf64-s390.c (elf_s390_finish_dynamic_sections): Likewise.
|
||||
* elfxx-sparc.c (_bfd_sparc_elf_finish_dynamic_sections):
|
||||
Likewise.
|
||||
|
||||
2013-08-23 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* elf64-x86-64.c (get_elf_x86_64_arch_data): New.
|
||||
|
@ -3909,6 +3909,7 @@ tilepro_elf_finish_dynamic_sections (bfd *output_bfd,
|
||||
PLT_ENTRY_SIZE - PLT_HEADER_SIZE);
|
||||
}
|
||||
|
||||
if (elf_section_data (splt->output_section) != NULL)
|
||||
elf_section_data (splt->output_section)->this_hdr.sh_entsize
|
||||
= PLT_ENTRY_SIZE;
|
||||
}
|
||||
|
@ -3692,8 +3692,9 @@ elf_s390_finish_dynamic_sections (bfd *output_bfd,
|
||||
- htab->elf.splt->output_section->vma - 6)/2,
|
||||
htab->elf.splt->contents + 8);
|
||||
}
|
||||
elf_section_data (htab->elf.splt->output_section)
|
||||
->this_hdr.sh_entsize = PLT_ENTRY_SIZE;
|
||||
if (elf_section_data (htab->elf.splt->output_section) != NULL)
|
||||
elf_section_data (htab->elf.splt->output_section)->this_hdr.sh_entsize
|
||||
= PLT_ENTRY_SIZE;
|
||||
}
|
||||
|
||||
if (htab->elf.sgotplt)
|
||||
|
@ -4793,9 +4793,10 @@ _bfd_sparc_elf_finish_dynamic_sections (bfd *output_bfd, struct bfd_link_info *i
|
||||
}
|
||||
}
|
||||
|
||||
if (elf_section_data (splt->output_section) != NULL)
|
||||
elf_section_data (splt->output_section)->this_hdr.sh_entsize
|
||||
= (htab->is_vxworks || !ABI_64_P (output_bfd))
|
||||
? 0 : htab->plt_entry_size;
|
||||
= ((htab->is_vxworks || !ABI_64_P (output_bfd))
|
||||
? 0 : htab->plt_entry_size);
|
||||
}
|
||||
|
||||
/* Set the first entry in the global offset table to the address of
|
||||
|
Loading…
Reference in New Issue
Block a user