From: Alan Modra Date: Wed, 25 Nov 2015 03:08:43 +0000 (+1030) Subject: [GOLD] Align PowerPC64 GOT X-Git-Tag: users/ARM/embedded-binutils-2_26-branch-2016q1~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5838675d54033a265e43e3cb530004889ffd6c2a;p=thirdparty%2Fbinutils-gdb.git [GOLD] Align PowerPC64 GOT As done in a27e685f for bfd ld. * powerpc.cc (Output_data_got_powerpc::Output_data_got_powerpc): Align to 256 byte boundary. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index 36045501b9e..628d6d0fcba 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,6 +1,10 @@ 2015-12-10 Alan Modra Apply from master. + 2015-11-25 Alan Modra + * powerpc.cc (Output_data_got_powerpc::Output_data_got_powerpc): Align + to 256 byte boundary. + 2015-11-19 Alan Modra * powerpc.cc (Target_powerpc::Scan::get_reference_flags): Correct GOT16 and TOC16 relocs to RELATIVE_REF. diff --git a/gold/powerpc.cc b/gold/powerpc.cc index 5441c52adf0..39a0324e79c 100644 --- a/gold/powerpc.cc +++ b/gold/powerpc.cc @@ -2192,7 +2192,10 @@ public: symtab_(symtab), layout_(layout), header_ent_cnt_(size == 32 ? 3 : 1), header_index_(size == 32 ? 0x2000 : 0) - { } + { + if (size == 64) + this->set_addralign(256); + } // Override all the Output_data_got methods we use so as to first call // reserve_ent().