summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2021-08-18 12:43:46 +0930
committerAlan Modra <amodra@gmail.com>2021-08-19 10:52:15 +0930
commit163d8077435419ae9ad7fb55503a8005067362a0 (patch)
treef0155d7638c312ae596f458a128e98d456fa533b
parentee51385839895013660b2fe5a86713e43f1627cf (diff)
downloadbinutils-gdb-163d8077435419ae9ad7fb55503a8005067362a0.tar.gz
[GOLD] PowerPC64 relocation overflow for -Os register save/restore funcs
Fixes a silly mistake in calculating the address of -Os out-of-line register save/restore function copies. Copies of these linker defined functions are added to stub sections when the original (in target->savres_section) can't be reached. * powerpc.cc (Target_powerpc::Relocate::relocate): Correct address calculation of out-of-line save/restore function copies. (cherry picked from commit 89c905a342d2cb35ebc4d66ad7cdca581b5134c3)
-rw-r--r--gold/powerpc.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/powerpc.cc b/gold/powerpc.cc
index ec6f950eb21..fbda058898a 100644
--- a/gold/powerpc.cc
+++ b/gold/powerpc.cc
@@ -11086,6 +11086,8 @@ Target_powerpc<size, big_endian>::Relocate::relocate(
{
if (ent->save_res_)
value = (value - target->savres_section()->address()
+ + stub_table->stub_address()
+ + stub_table->plt_size()
+ stub_table->branch_size());
else
{