diff options
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index 85fc5842a3..c3e84fbb34 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -1,5 +1,5 @@ /* tc-i386.h -- Header file for tc-i386.c - Copyright (C) 1989, 1992 Free Software Foundation. + Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation. This file is part of GAS, the GNU Assembler. @@ -53,10 +53,10 @@ checked here. I am not sure if some of the others are ever used with pcrel, but it is easier to be safe than sorry. */ -#define TC_RELOC_RTSYM_LOC_FIXUP(X) \ - ((X) != BFD_RELOC_386_PLT32 && \ - (X) != BFD_RELOC_386_GOT32 && \ - (X) != BFD_RELOC_386_GOTPC) +#define TC_RELOC_RTSYM_LOC_FIXUP(FIX) \ + ((FIX)->fx_r_type != BFD_RELOC_386_PLT32 \ + && (FIX)->fx_r_type != BFD_RELOC_386_GOT32 \ + && (FIX)->fx_r_type != BFD_RELOC_386_GOTPC) #define TARGET_ARCH bfd_arch_i386 #define TARGET_BYTES_BIG_ENDIAN 0 |