diff options
author | Cary Coutant <ccoutant@gmail.com> | 2015-12-11 14:20:41 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2015-12-11 14:23:59 -0800 |
commit | 6e0813d359c6eaddc481b3b902ca4ccc1251febe (patch) | |
tree | bdaf54f3dd7530be90481e07a020f5ca8ce1cc88 /gold/x86_64.cc | |
parent | 6b2353a53a621680dc839366f4b2b4f96eccb6da (diff) | |
download | gdb-6e0813d359c6eaddc481b3b902ca4ccc1251febe.zip gdb-6e0813d359c6eaddc481b3b902ca4ccc1251febe.tar.gz gdb-6e0813d359c6eaddc481b3b902ca4ccc1251febe.tar.bz2 |
Pass relocations to Target::do_calls_non_split.
gold/
* target.h (Target::calls_non_split): Add prelocs, reloc_count
parameters.
(Target::do_calls_non_split): Likewise.
* target.cc (Target::do_calls_non_split): Likewise.
* reloc.cc (Sized_relobj_file::split_stack_adjust_reltype): Adjust
call to Target::calls_non_split.
* i386.cc (Target_i386::do_calls_non_split): Add prelocs, reloc_count
parameters.
* powerpc.cc (Target_powerpc::do_calls_non_split): Likewise.
* x86_64.cc (Target_x86_64::do_calls_non_split): Likewise.
Diffstat (limited to 'gold/x86_64.cc')
-rw-r--r-- | gold/x86_64.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gold/x86_64.cc b/gold/x86_64.cc index 12c6552..f260e74 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -561,6 +561,7 @@ class Target_x86_64 : public Sized_target<size, false> void do_calls_non_split(Relobj* object, unsigned int shndx, section_offset_type fnoffset, section_size_type fnsize, + const unsigned char* prelocs, size_t reloc_count, unsigned char* view, section_size_type view_size, std::string* from, std::string* to) const; @@ -4597,6 +4598,8 @@ void Target_x86_64<size>::do_calls_non_split(Relobj* object, unsigned int shndx, section_offset_type fnoffset, section_size_type fnsize, + const unsigned char*, + size_t, unsigned char* view, section_size_type view_size, std::string* from, |