diff options
Diffstat (limited to 'gas/config/tc-m32c.h')
-rw-r--r-- | gas/config/tc-m32c.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gas/config/tc-m32c.h b/gas/config/tc-m32c.h index 0534603..3af0092 100644 --- a/gas/config/tc-m32c.h +++ b/gas/config/tc-m32c.h @@ -57,9 +57,10 @@ extern bfd_boolean m32c_fix_adjustable (struct fix *); #define TC_FORCE_RELOCATION(fix) m32c_force_relocation (fix) extern int m32c_force_relocation (struct fix *); -#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ - m32c_cons_fix_new (FRAG, WHERE, NBYTES, EXP) -extern void m32c_cons_fix_new (fragS *, int, int, expressionS *); +#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RELOC) \ + m32c_cons_fix_new (FRAG, WHERE, NBYTES, EXP, RELOC) +extern void m32c_cons_fix_new (fragS *, int, int, expressionS *, + bfd_reloc_code_real_type); extern const struct relax_type md_relax_table[]; #define TC_GENERIC_RELAX_TABLE md_relax_table |