From 4f3cafa2ebb6640d813cd2c2a0176f984482210d Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 1 Nov 2002 10:42:26 +0000 Subject: * write.c (TC_FORCE_RELOCATION_SUB_ABS): Default to zero. (TC_FORCE_RELOCATION_SUB_LOCAL): Likewise when DIFF_EXPR_OK. * doc/internals.texi (TC_FORCE_RELOCATION_SUB_ABS): Document changed default. --- gas/write.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gas/write.c') diff --git a/gas/write.c b/gas/write.c index b4cc7e0..73eb793 100644 --- a/gas/write.c +++ b/gas/write.c @@ -55,16 +55,14 @@ #endif #ifndef TC_FORCE_RELOCATION_SUB_ABS -#define TC_FORCE_RELOCATION_SUB_ABS(FIX) \ - (S_FORCE_RELOC ((FIX)->fx_subsy)) +#define TC_FORCE_RELOCATION_SUB_ABS(FIX) 0 #endif #ifndef TC_FORCE_RELOCATION_SUB_LOCAL #ifdef DIFF_EXPR_OK -#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) \ - (S_FORCE_RELOC ((FIX)->fx_subsy)) +#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) 0 #else -#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) 1 +#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) 1 #endif #endif -- cgit v1.1