diff options
author | Ian Lance Taylor <ian@airs.com> | 2009-03-04 06:46:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2009-03-04 06:46:27 +0000 |
commit | 031cdbed18938f96e4607b717e864928bbb4643e (patch) | |
tree | 73d294fac4e833a02f6a523a953083822cad402b /gold/x86_64.cc | |
parent | 727fc41e077139570ea8b8ddfd6c546b2a55627c (diff) | |
download | gdb-031cdbed18938f96e4607b717e864928bbb4643e.zip gdb-031cdbed18938f96e4607b717e864928bbb4643e.tar.gz gdb-031cdbed18938f96e4607b717e864928bbb4643e.tar.bz2 |
PR 9918
* target-reloc.h (relocate_section): Pass output_section to
relocate.
* i386.cc (Target_i386::should_apply_static_reloc): Add
output_section parameter. Change all callers.
(Target_i386::Relocate::relocate): Add output_section parameter.
* x86_64.cc (Target_x86_64::Relocate::relocate): Likewise.
* sparc.cc (Target_sparc::Relocate::relocate): Likewise.
* powerpc.cc (Target_powerpc::Relocate::relocate): Likewise.
* testsuite/two_file_shared.sh: New script.
* testsuite/Makefile.am (check_SCRIPTS): Add two_file_shared.sh.
(check_DATA): Add two_file_shared.dbg.
(two_file_shared.dbg): New target.
* testsuite/Makefile.in: Rebuild.
Diffstat (limited to 'gold/x86_64.cc')
-rw-r--r-- | gold/x86_64.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/x86_64.cc b/gold/x86_64.cc index 4dfe75b..85d69c3 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -227,8 +227,8 @@ class Target_x86_64 : public Sized_target<64, false> // Do a relocation. Return false if the caller should not issue // any warnings about this relocation. inline bool - relocate(const Relocate_info<64, false>*, Target_x86_64*, size_t relnum, - const elfcpp::Rela<64, false>&, + relocate(const Relocate_info<64, false>*, Target_x86_64*, Output_section*, + size_t relnum, const elfcpp::Rela<64, false>&, unsigned int r_type, const Sized_symbol<64>*, const Symbol_value<64>*, unsigned char*, elfcpp::Elf_types<64>::Elf_Addr, @@ -1692,6 +1692,7 @@ Target_x86_64::do_finalize_sections(Layout* layout) inline bool Target_x86_64::Relocate::relocate(const Relocate_info<64, false>* relinfo, Target_x86_64* target, + Output_section*, size_t relnum, const elfcpp::Rela<64, false>& rela, unsigned int r_type, |