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/target.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/target.cc')
-rw-r--r-- | gold/target.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/target.cc b/gold/target.cc index f558c5e..19d001c 100644 --- a/gold/target.cc +++ b/gold/target.cc @@ -161,7 +161,8 @@ Target::do_is_call_to_non_split(const Symbol* sym, unsigned int) const void Target::do_calls_non_split(Relobj* object, unsigned int, section_offset_type, - section_size_type, unsigned char*, section_size_type, + section_size_type, const unsigned char*, size_t, + unsigned char*, section_size_type, std::string*, std::string*) const { static bool warned; |