diff options
Diffstat (limited to 'gold/sparc.cc')
-rw-r--r-- | gold/sparc.cc | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/gold/sparc.cc b/gold/sparc.cc index 7b78311..f8c59ec 100644 --- a/gold/sparc.cc +++ b/gold/sparc.cc @@ -131,20 +131,21 @@ class Target_sparc : public Sized_target<size, big_endian> const unsigned char* plocal_symbols, Relocatable_relocs*); - // Relocate a section during a relocatable link. + // Emit relocations for a section. void - relocate_for_relocatable(const Relocate_info<size, big_endian>*, - unsigned int sh_type, - const unsigned char* prelocs, - size_t reloc_count, - Output_section* output_section, - off_t offset_in_output_section, - const Relocatable_relocs*, - unsigned char* view, - typename elfcpp::Elf_types<size>::Elf_Addr view_address, - section_size_type view_size, - unsigned char* reloc_view, - section_size_type reloc_view_size); + relocate_relocs(const Relocate_info<size, big_endian>*, + unsigned int sh_type, + const unsigned char* prelocs, + size_t reloc_count, + Output_section* output_section, + off_t offset_in_output_section, + const Relocatable_relocs*, + unsigned char* view, + typename elfcpp::Elf_types<size>::Elf_Addr view_address, + section_size_type view_size, + unsigned char* reloc_view, + section_size_type reloc_view_size); + // Return whether SYM is defined by the ABI. bool do_is_defined_by_abi(const Symbol* sym) const @@ -4197,11 +4198,11 @@ Target_sparc<size, big_endian>::scan_relocatable_relocs( rr); } -// Relocate a section during a relocatable link. +// Emit relocations for a section. template<int size, bool big_endian> void -Target_sparc<size, big_endian>::relocate_for_relocatable( +Target_sparc<size, big_endian>::relocate_relocs( const Relocate_info<size, big_endian>* relinfo, unsigned int sh_type, const unsigned char* prelocs, @@ -4217,7 +4218,7 @@ Target_sparc<size, big_endian>::relocate_for_relocatable( { gold_assert(sh_type == elfcpp::SHT_RELA); - gold::relocate_for_relocatable<size, big_endian, elfcpp::SHT_RELA>( + gold::relocate_relocs<size, big_endian, elfcpp::SHT_RELA>( relinfo, prelocs, reloc_count, |