From: H.J. Lu Date: Sat, 28 Jan 2012 00:23:31 +0000 (+0000) Subject: Correct incremental relocation offset X-Git-Tag: sid-snapshot-20120201~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c335b55d34437e607fca5ba7f0bea4a9696d2fe5;p=external%2Fbinutils.git Correct incremental relocation offset 2012-01-27 H.J. Lu * incremental.cc (write_info_blocks): Correct relocation offset. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index beb6d34..4ef4cad 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,5 +1,9 @@ 2012-01-27 H.J. Lu + * incremental.cc (write_info_blocks): Correct relocation offset. + +2012-01-27 H.J. Lu + * x86_64.cc (Relocate::tls_gd_to_ie): Support x32. (Relocate::tls_gd_to_le): Likewise. diff --git a/gold/incremental.cc b/gold/incremental.cc index 39bad37..2a26573 100644 --- a/gold/incremental.cc +++ b/gold/incremental.cc @@ -1632,7 +1632,8 @@ Output_section_incremental_inputs::write_info_blocks( Swap32::writeval(pov + 4, shndx); Swap32::writeval(pov + 8, chain); Swap32::writeval(pov + 12, nrelocs); - Swap32::writeval(pov + 16, first_reloc * 3 * sizeof_addr); + Swap32::writeval(pov + 16, + first_reloc * (8 + 2 * sizeof_addr)); pov += 20; }