From: Ken Raeburn Date: Wed, 13 Oct 1993 20:54:03 +0000 (+0000) Subject: * config/obj-coffbfd.c (fixup_segment) [DIFF_EXPR_OK]: If X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=56f61233b248b00565e0c6977eaa52912864620d;p=deliverable%2Fbinutils-gdb.git * config/obj-coffbfd.c (fixup_segment) [DIFF_EXPR_OK]: If sub_symbolP is in the current segment, convert to a PC-relative fixup and discard the symbol. (Copied from write.c.) --- diff --git a/gas/config/obj-coffbfd.c b/gas/config/obj-coffbfd.c index b73dbff6d6..d031884495 100644 --- a/gas/config/obj-coffbfd.c +++ b/gas/config/obj-coffbfd.c @@ -2497,6 +2497,19 @@ DEFUN (fixup_segment, (segP, this_segment_type), { add_number -= S_GET_VALUE (sub_symbolP); } +#ifdef DIFF_EXPR_OK + else if (!pcrel + && S_GET_SEGMENT (sub_symbolP) == this_segment_type) + { + /* Make it pc-relative. */ + add_number += (md_pcrel_from (fixP) + - S_GET_VALUE (sub_symbolP)); + pcrel = 1; + fixP->fx_pcrel = 1; + sub_symbolP = 0; + fixP->fx_subsy = 0; + } +#endif else { as_bad ("Can't emit reloc {- %s-seg symbol \"%s\"} @ file address %ld.",