diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-08-22 04:52:40 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-08-22 04:52:40 +0000 |
commit | 8f36cd18af6756dd6ab50da33d2c7574fc711527 (patch) | |
tree | 5e35d0c637c073c3f6c5e236b8fd5b20886aa86e /gas/config/tc-v850.h | |
parent | 58a77e418b6999bee8e5e54e5483d24536bb93c0 (diff) | |
download | binutils-gdb-8f36cd18af6756dd6ab50da33d2c7574fc711527.tar.gz |
* write.c (TC_FIX_ADJUSTABLE): Define to 1, if not defined.
(fixup_segment) Use it instead of TC_DONT_FIX_NON_ADJUSTABLE.
* config/tc-i386.h (TC_DONT_FIX_NON_ADJUSTABLE): Remove.
<OBJ_ELF, OBJ_COFF, TE_PE> (TC_FIX_ADJUSTABLE): Define.
* config/tc-arm.h (TC_DONT_FIX_NON_ADJUSTABLE): Remove.
<OBJ_ELF> (TC_FIX_ADJUSTABLE): Define.
* config/tc-i960.h, config/tc-m68k.h, config/tc-v850.h:
Likewise.
Diffstat (limited to 'gas/config/tc-v850.h')
-rw-r--r-- | gas/config/tc-v850.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gas/config/tc-v850.h b/gas/config/tc-v850.h index 59fa5074211..97b903e890b 100644 --- a/gas/config/tc-v850.h +++ b/gas/config/tc-v850.h @@ -37,12 +37,15 @@ #define MD_APPLY_FIX3 #define md_operand(x) +#define obj_fix_adjustable(fixP) v850_fix_adjustable(fixP) +#define TC_FORCE_RELOCATION(fixp) v850_force_relocation(fixp) + +#ifdef OBJ_ELF /* This arranges for gas/write.c to not apply a relocation if obj_fix_adjustable() says it is not adjustable. */ -#define TC_DONT_FIX_NON_ADJUSTABLE 1 +#define TC_FIX_ADJUSTABLE(fixP) obj_fix_adjustable (fixP) +#endif -#define obj_fix_adjustable(fixP) v850_fix_adjustable(fixP) -#define TC_FORCE_RELOCATION(fixp) v850_force_relocation(fixp) extern int v850_force_relocation PARAMS ((struct fix *)); /* Permit temporary numeric labels. */ |