diff options
author | Rafael Ávila de Espíndola <rafael.espindola@gmail.com> | 2015-04-06 15:49:50 -0400 |
---|---|---|
committer | Rafael Ávila de Espíndola <rafael.espindola@gmail.com> | 2015-04-06 15:49:50 -0400 |
commit | 7fa5525f8e8bc5d5e08998718149bda1928e314a (patch) | |
tree | e7128fff635697525bfadd708b49880f55003104 /gold | |
parent | 5368dcf2bae8f15e16cd14348bb7bd716bbc81cb (diff) | |
download | gdb-7fa5525f8e8bc5d5e08998718149bda1928e314a.zip gdb-7fa5525f8e8bc5d5e08998718149bda1928e314a.tar.gz gdb-7fa5525f8e8bc5d5e08998718149bda1928e314a.tar.bz2 |
Fix the signature of a virtual method to match the one in the parent class.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 4 | ||||
-rw-r--r-- | gold/aarch64.cc | 10 |
2 files changed, 8 insertions, 6 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 25d4588..ee0abcb 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,5 +1,9 @@ 2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com> + * aarch64.cc (do_reloc_addend): Fix signature to match the parent one. + +2015-04-06 Rafael Ávila de Espíndola <rafael.espindola@gmail.com> + * gc.cc (Garbage_collection::do_transitive_closure): Avoid a call to find by using the return value of insert. diff --git a/gold/aarch64.cc b/gold/aarch64.cc index 4ae987f..dea64c0 100644 --- a/gold/aarch64.cc +++ b/gold/aarch64.cc @@ -1749,9 +1749,8 @@ class Target_aarch64 : public Sized_target<size, big_endian> } // Return the addend to use for a target specific relocation. - typename elfcpp::Elf_types<size>::Elf_Addr - do_reloc_addend(void* arg, unsigned int r_type, - typename elfcpp::Elf_types<size>::Elf_Addr addend) const; + uint64_t + do_reloc_addend(void* arg, unsigned int r_type, uint64_t addend) const; // Return the PLT section. uint64_t @@ -4389,10 +4388,9 @@ Target_aarch64<size, big_endian>::new_stub_table( template<int size, bool big_endian> -typename elfcpp::Elf_types<size>::Elf_Addr +uint64_t Target_aarch64<size, big_endian>::do_reloc_addend( - void* arg, unsigned int r_type, - typename elfcpp::Elf_types<size>::Elf_Addr) const + void* arg, unsigned int r_type, uint64_t) const { gold_assert(r_type == elfcpp::R_AARCH64_TLSDESC); uintptr_t intarg = reinterpret_cast<uintptr_t>(arg); |