From: Alan Modra Date: Wed, 6 Jun 2001 12:06:56 +0000 (+0000) Subject: * config/tc-s390.h (TC_FORCE_RELOCATION): Always emit relocations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d6767af8425fc020f42f36e3cc11bc01af2c112b;p=binutils-gdb.git * config/tc-s390.h (TC_FORCE_RELOCATION): Always emit relocations BFD_RELOC_VTABLE_INHERIT and BFD_RELOC_VTABLE_ENTRY. --- diff --git a/gas/config/tc-s390.h b/gas/config/tc-s390.h index e9b36622a3b..089c1f07218 100644 --- a/gas/config/tc-s390.h +++ b/gas/config/tc-s390.h @@ -44,6 +44,10 @@ struct fix; && S_IS_DEFINED ((FIX)->fx_addsy) \ && ! S_IS_COMMON ((FIX)->fx_addsy)))) +#define TC_FORCE_RELOCATION(FIXP) \ + ((FIXP)->fx_r_type == BFD_RELOC_VTABLE_INHERIT \ + || (FIXP)->fx_r_type == BFD_RELOC_VTABLE_ENTRY) + #define tc_fix_adjustable(X) tc_s390_fix_adjustable(X) extern int tc_s390_fix_adjustable PARAMS ((struct fix *));