Fix the signature of a virtual method to match the one in the parent class.
authorRafael Ávila de Espíndola <rafael.espindola@gmail.com>
Mon, 6 Apr 2015 19:49:50 +0000 (15:49 -0400)
committerRafael Ávila de Espíndola <rafael.espindola@gmail.com>
Mon, 6 Apr 2015 19:49:50 +0000 (15:49 -0400)
gold/ChangeLog
gold/aarch64.cc

index 25d45889f735ab19bbc8bb648b80811782e4b025..ee0abcbaeca1b871e87ef637854e979aa39c7ee1 100644 (file)
@@ -1,3 +1,7 @@
+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
index 4ae987f5307f37304310c36a8ad0631a44bcdf7d..dea64c0ba8f321b3fc6461958b1d8a23ca001863 100644 (file)
@@ -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);