* config/tc-i386.h (EXTERN_FORCE_RELOC): Define only if STRICT_PE_FORMAT.

This commit is contained in:
Christopher Faylor 2002-11-11 17:11:53 +00:00
parent 46ae13f0c9
commit 1a89f85f47
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-11-11 Christopher Faylor <cgf@redhat.com>
* config/tc-i386.h (EXTERN_FORCE_RELOC): Define only if
STRICT_PE_FORMAT.
2002-11-11 Svein E. Seldal <Svein.Seldal@solidas.com>
* config/tc-tic4x.c: Declare as many functions as possible as

View File

@ -472,9 +472,11 @@ extern int tc_i386_fix_adjustable PARAMS ((struct fix *));
/* ELF wants external syms kept, as does PE COFF. */
#ifdef TE_PE
#define EXTERN_FORCE_RELOC \
# ifdef STRICT_PE_FORMAT
# define EXTERN_FORCE_RELOC \
(OUTPUT_FLAVOR == bfd_target_elf_flavour \
|| OUTPUT_FLAVOR == bfd_target_coff_flavour)
# endif
#else
#define EXTERN_FORCE_RELOC \
(OUTPUT_FLAVOR == bfd_target_elf_flavour)