From ed1de528f62ae040182ebfcee2cb4abc3194f47a Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Tue, 4 Jul 2000 05:11:37 +0000 Subject: * coff-arm.c (coff_arm_relocate_section): Do not ignore the symbol value of PC-relative offsets. --- bfd/coff-arm.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'bfd/coff-arm.c') diff --git a/bfd/coff-arm.c b/bfd/coff-arm.c index 2b89b84..4aecc07 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; -- cgit v1.1