diff options
Diffstat (limited to 'gold/copy-relocs.cc')
-rw-r--r-- | gold/copy-relocs.cc | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gold/copy-relocs.cc b/gold/copy-relocs.cc index a7824fe..2d03b1a 100644 --- a/gold/copy-relocs.cc +++ b/gold/copy-relocs.cc @@ -42,7 +42,9 @@ Copy_relocs<sh_type, size, big_endian>::copy_reloc( Sized_relobj_file<size, big_endian>* object, unsigned int shndx, Output_section* output_section, - const Reloc& rel, + unsigned int r_type, + typename elfcpp::Elf_types<size>::Elf_Addr r_offset, + typename elfcpp::Elf_types<size>::Elf_Swxword r_addend, Output_data_reloc<sh_type, true, size, big_endian>* reloc_section) { if (this->need_copy_reloc(sym, object, shndx)) @@ -51,7 +53,8 @@ Copy_relocs<sh_type, size, big_endian>::copy_reloc( { // We may not need a COPY relocation. Save this relocation to // possibly be emitted later. - this->save(sym, object, shndx, output_section, rel); + this->save(sym, object, shndx, output_section, + r_type, r_offset, r_addend); } } @@ -176,14 +179,13 @@ Copy_relocs<sh_type, size, big_endian>::save( Sized_relobj_file<size, big_endian>* object, unsigned int shndx, Output_section* output_section, - const Reloc& rel) + unsigned int r_type, + typename elfcpp::Elf_types<size>::Elf_Addr r_offset, + typename elfcpp::Elf_types<size>::Elf_Swxword r_addend) { - unsigned int reloc_type = elfcpp::elf_r_type<size>(rel.get_r_info()); - typename elfcpp::Elf_types<size>::Elf_Addr addend = - Reloc_types<sh_type, size, big_endian>::get_reloc_addend_noerror(&rel); - this->entries_.push_back(Copy_reloc_entry(sym, reloc_type, object, shndx, - output_section, rel.get_r_offset(), - addend)); + this->entries_.push_back(Copy_reloc_entry(sym, r_type, object, shndx, + output_section, r_offset, + r_addend)); } // Emit any saved relocs. |