X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gas%2Fconfig%2Ftc-mips.h;h=396f6351457b158a74f31f4c8aea7298d1b08b79;hb=a09f656b267b9a684f038fba7cadfe98e2f18892;hp=7b780c24f1f2911f6506ec3d4f7c2a6182ee4752;hpb=2571583aed598dd3f9651b53434e5f177a0e3cf7;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/config/tc-mips.h b/gas/config/tc-mips.h index 7b780c24f1..396f635145 100644 --- a/gas/config/tc-mips.h +++ b/gas/config/tc-mips.h @@ -1,5 +1,5 @@ /* tc-mips.h -- header file for tc-mips.c. - Copyright (C) 1993-2017 Free Software Foundation, Inc. + Copyright (C) 1993-2020 Free Software Foundation, Inc. Contributed by the OSF and Ralph Campbell. Written by Keith Knowles and Ralph Campbell, working independently. Modified for ECOFF support by Ian Lance Taylor of Cygnus Support. @@ -126,6 +126,11 @@ extern void mips_frob_file (void); extern void mips_frob_file_after_relocs (void); #endif +#ifdef TE_IRIX +#define tc_frob_symbol(sym, punt) mips_frob_symbol (sym) +extern void mips_frob_symbol (symbolS *); +#endif + #define tc_fix_adjustable(fixp) mips_fix_adjustable (fixp) extern int mips_fix_adjustable (struct fix *); @@ -140,7 +145,8 @@ extern int mips_fix_adjustable (struct fix *); extern int mips_force_relocation (struct fix *); #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) \ - (! SEG_NORMAL (SEG) || mips_force_relocation (FIX)) + (GENERIC_FORCE_RELOCATION_SUB_SAME (FIX, SEG) \ + || mips_force_relocation (FIX)) #define TC_FORCE_RELOCATION_ABS(FIX) mips_force_relocation_abs (FIX) extern bfd_boolean mips_force_relocation_abs (struct fix *);