diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-08-23 21:12:48 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-08-23 21:12:48 +0000 |
commit | 4b853faa3374d626a1d9b8aa5acc213344a52744 (patch) | |
tree | 24518c8ee722f9ff148271fbd645711cb6c8b834 /gas/config | |
parent | efcc591461c3847f1406e5385000b25f962b716d (diff) | |
download | ppe42-binutils-4b853faa3374d626a1d9b8aa5acc213344a52744.tar.gz ppe42-binutils-4b853faa3374d626a1d9b8aa5acc213344a52744.zip |
* config/tc-i386.h <OBJ_MAYBE_ELF, OBJ_MAYBE_COFF>
(TC_FIX_ADJUSTABLE): Define.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index 03084319da..82fb606f37 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -41,7 +41,7 @@ struct fix; #define tc_fix_adjustable(X) tc_i386_fix_adjustable(X) extern int tc_i386_fix_adjustable PARAMS ((struct fix *)); -#if (defined (OBJ_ELF) || defined (OBJ_COFF)) && !defined (TE_PE) +#if (defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF) || defined (OBJ_MAYBE_COFF) || defined (OBJ_COFF)) && !defined (TE_PE) /* This arranges for gas/write.c to not apply a relocation if tc_fix_adjustable() says it is not adjustable. */ #define TC_FIX_ADJUSTABLE(fixP) tc_fix_adjustable (fixP) |