From ce430ed8b5b07f5de9efd450a6f6bf12e2ffa65a Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Tue, 4 Jul 2000 05:11:37 +0000 Subject: [PATCH] * coff-arm.c (coff_arm_relocate_section): Do not ignore the symbol value of PC-relative offsets. --- bfd/ChangeLog | 5 +++++ bfd/coff-arm.c | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e44ee9b72f..e2e8baf94c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2000-07-04 Alexandre Oliva + + * coff-arm.c (coff_arm_relocate_section): Do not ignore the symbol + value of PC-relative offsets. + 2000-07-03 Jim Wilson * elf64-alpha.c (alpha_elf_size_info): New. diff --git a/bfd/coff-arm.c b/bfd/coff-arm.c index 2b89b848c8..4aecc07ab7 100644 --- a/bfd/coff-arm.c +++ b/bfd/coff-arm.c @@ -1246,8 +1246,15 @@ coff_arm_relocate_section (output_bfd, info, input_bfd, input_section, { if (info->relocateable) continue; +#if 0 /* We must not ignore the symbol value. If the symbol is + within the same section, the relocation should have already + been fixed, but if it is not, we'll be handed a reloc into + the beginning of the symbol's section, so we must not cancel + out the symbol's value, otherwise we'll be adding it in + twice. */ if (sym != NULL && sym->n_scnum != 0) addend += sym->n_value; +#endif } val = 0; -- 2.11.0