From 0fb19cbc9a510daf16a9b50785562f3fa72477e7 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 22 Feb 2002 10:03:03 +0000 Subject: [PATCH] * elf64-sh64.c (sh_elf64_relocate_section): Fix a typo from my last patch. * elf64-x86-64.c (elf64_x86_64_relocate_section): Likewise. --- bfd/ChangeLog | 6 ++++++ bfd/elf64-sh64.c | 2 +- bfd/elf64-x86-64.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c6fca849c42..c92ae2e5d6d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2002-02-22 Jakub Jelinek + + * elf64-sh64.c (sh_elf64_relocate_section): Fix a typo from my + last patch. + * elf64-x86-64.c (elf64_x86_64_relocate_section): Likewise. + 2002-02-21 Andreas Jaeger * elf64-x86-64.c: Major rework that introduces all recent changes diff --git a/bfd/elf64-sh64.c b/bfd/elf64-sh64.c index 901bfa5bda6..5b11aa86954 100644 --- a/bfd/elf64-sh64.c +++ b/bfd/elf64-sh64.c @@ -1754,7 +1754,7 @@ sh_elf64_relocate_section (output_bfd, info, input_bfd, input_section, if (outrel.r_offset == (bfd_vma) -1) skip = true; - else if (outrel.r_offset == (bfd_vma) -1) + else if (outrel.r_offset == (bfd_vma) -2) skip = true, relocate = true; outrel.r_offset += (input_section->output_section->vma diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 32bf260483d..f2d2e64d502 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -1776,7 +1776,7 @@ elf64_x86_64_relocate_section (output_bfd, info, input_bfd, input_section, rel->r_offset); if (outrel.r_offset == (bfd_vma) -1) skip = true; - else if (outrel.r_offset == (bfd_vma) -1) + else if (outrel.r_offset == (bfd_vma) -2) skip = true, relocate = true; outrel.r_offset += (input_section->output_section->vma -- 2.30.2