diff options
Diffstat (limited to 'gold/sparc.cc')
-rw-r--r-- | gold/sparc.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gold/sparc.cc b/gold/sparc.cc index 16a6ffc..3d31dd6 100644 --- a/gold/sparc.cc +++ b/gold/sparc.cc @@ -112,7 +112,8 @@ class Target_sparc : public Sized_target<size, big_endian> bool needs_special_offset_handling, unsigned char* view, typename elfcpp::Elf_types<size>::Elf_Addr view_address, - section_size_type view_size); + section_size_type view_size, + const Reloc_symbol_changes*); // Scan the relocs during a relocatable link. void @@ -3106,7 +3107,8 @@ Target_sparc<size, big_endian>::relocate_section( bool needs_special_offset_handling, unsigned char* view, typename elfcpp::Elf_types<size>::Elf_Addr address, - section_size_type view_size) + section_size_type view_size, + const Reloc_symbol_changes* reloc_symbol_changes) { typedef Target_sparc<size, big_endian> Sparc; typedef typename Target_sparc<size, big_endian>::Relocate Sparc_relocate; @@ -3123,7 +3125,8 @@ Target_sparc<size, big_endian>::relocate_section( needs_special_offset_handling, view, address, - view_size); + view_size, + reloc_symbol_changes); } // Return the size of a relocation while scanning during a relocatable |