From 451ebe82ebae6adc301ec4dd8fb8a3c921a7888c Mon Sep 17 00:00:00 2001 From: Kai Tietz Date: Wed, 31 Mar 2010 16:32:01 +0000 Subject: 2010-03-31 Kai Tietz * coff-i386.c (in_reloc_p): Check also for R_SECREL32. * coff-x86_64.c (in_reloc_p): Check also for R_AMD64_SECREL. --- bfd/coff-x86_64.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'bfd/coff-x86_64.c') diff --git a/bfd/coff-x86_64.c b/bfd/coff-x86_64.c index 4d500fe7cd..8083d978dd 100644 --- a/bfd/coff-x86_64.c +++ b/bfd/coff-x86_64.c @@ -192,7 +192,8 @@ coff_amd64_reloc (bfd *abfd, static bfd_boolean in_reloc_p (bfd *abfd ATTRIBUTE_UNUSED, reloc_howto_type *howto) { - return ! howto->pc_relative && howto->type != R_AMD64_IMAGEBASE; + return ! howto->pc_relative && howto->type != R_AMD64_IMAGEBASE + && howto->type != R_AMD64_SECREL; } #endif /* COFF_WITH_PE */ @@ -555,10 +556,10 @@ coff_amd64_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED, #if defined(COFF_WITH_PE) /* Cancel out code in _bfd_coff_generic_relocate_section. */ *addendp = 0; - if (rel->r_type >= R_AMD64_PCRLONG_1 && rel->r_type <= R_AMD64_PCRLONG_5) - { - *addendp -= (bfd_vma)(rel->r_type - R_AMD64_PCRLONG); - rel->r_type = R_AMD64_PCRLONG; + if (rel->r_type >= R_AMD64_PCRLONG_1 && rel->r_type <= R_AMD64_PCRLONG_5) + { + *addendp -= (bfd_vma)(rel->r_type - R_AMD64_PCRLONG); + rel->r_type = R_AMD64_PCRLONG; } #endif -- cgit v1.2.1