From 725a4ff71f08a0fd0f23204b879911e2e0b6b49a Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 27 Jun 2001 07:02:24 +0000 Subject: [PATCH] * write.c (fixup_segment ): Don't subtract MD_PCREL_FROM_SECTION for 68k. (fixup_segment ): Only fudge by adding MD_PCREL_FROM_SECTION for 68k or if not already pcrel. --- gas/ChangeLog | 7 +++++++ gas/write.c | 38 ++++++++++++++++++++++++-------------- 2 files changed, 31 insertions(+), 14 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 270b2b178f..426f6ac052 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2001-06-27 Alan Modra + + * write.c (fixup_segment ): Don't + subtract MD_PCREL_FROM_SECTION for 68k. + (fixup_segment ): Only fudge + by adding MD_PCREL_FROM_SECTION for 68k or if not already pcrel. + 2001-06-27 Tracy A. Kuhrt * write.c (fixup_segment ): If diff --git a/gas/write.c b/gas/write.c index b6492c27e4..2beb1d7731 100644 --- a/gas/write.c +++ b/gas/write.c @@ -2663,7 +2663,12 @@ fixup_segment (fixP, this_segment_type) #endif /* TC_I960 */ add_number += (S_GET_VALUE (add_symbolP) - S_GET_VALUE (sub_symbolP)); - if (pcrel) + if (1 +#ifdef TC_M68K + /* See the comment below about 68k weirdness. */ + && 0 +#endif + && pcrel) add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type); add_symbolP = NULL; @@ -2689,21 +2694,26 @@ fixup_segment (fixP, this_segment_type) add_number -= S_GET_VALUE (sub_symbolP); #ifdef DIFF_EXPR_OK - else if (S_GET_SEGMENT (sub_symbolP) == this_segment_type -#if 0 - /* Do this even if it's already described as - pc-relative. For example, on the m68k, an - operand of "pc@(foo-.-2)" should address - "foo" in a pc-relative mode. */ - && pcrel -#endif - ) + else if (S_GET_SEGMENT (sub_symbolP) == this_segment_type) { /* Make it pc-relative. */ - add_number += (MD_PCREL_FROM_SECTION (fixP, this_segment_type) - - S_GET_VALUE (sub_symbolP)); - pcrel = 1; - fixP->fx_pcrel = 1; + if (0 +#ifdef TC_M68K + /* Do this for m68k even if it's already described + as pc-relative. On the m68k, an operand of + "pc@(foo-.-2)" should address "foo" in a + pc-relative mode. */ + || 1 +#endif + || !pcrel) + { + add_number += MD_PCREL_FROM_SECTION (fixP, + this_segment_type); + pcrel = 1; + fixP->fx_pcrel = 1; + } + + add_number -= S_GET_VALUE (sub_symbolP); sub_symbolP = 0; fixP->fx_subsy = 0; } -- 2.11.0