From 384f7503344b1d07561f801ced7493858cde6164 Mon Sep 17 00:00:00 2001 From: Awson Date: Mon, 26 Sep 2016 16:16:25 +0100 Subject: Fix the calculation of AMD64_PCRQUAD relocations. PR ld/17955 * coff-x86_64.c (coff_amd64_rtype_to_howto): Use an 8 byte offset for R_AMD64_PCRQUAD relocations. --- bfd/coff-x86_64.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bfd/coff-x86_64.c') diff --git a/bfd/coff-x86_64.c b/bfd/coff-x86_64.c index 398bc48b198..d92e03dea1b 100644 --- a/bfd/coff-x86_64.c +++ b/bfd/coff-x86_64.c @@ -614,7 +614,12 @@ coff_amd64_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED, #if defined(COFF_WITH_PE) if (howto->pc_relative) { - *addendp -= 4; +#ifndef DONT_EXTEND_AMD64 + if (rel->r_type == R_AMD64_PCRQUAD) + *addendp -= 8; + else +#endif + *addendp -= 4; /* If the symbol is defined, then the generic code is going to add back the symbol value in order to cancel out an -- cgit v1.2.1