From: Alan Modra Date: Wed, 16 Apr 2014 13:28:15 +0000 (+0930) Subject: Fix more fallout from TC_CONS_FIX_NEW change X-Git-Tag: gdb-7.8-release~555 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e63ef2f2539b7fd3f81f11d930b8bdf8daa9da1;p=thirdparty%2Fbinutils-gdb.git Fix more fallout from TC_CONS_FIX_NEW change * config/tc-tilegx.h (TC_CONS_FIX_NEW): Add RELOC arg. * config/tc-tilepro.h (TC_CONS_FIX_NEW): Likewise. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index d7e5b4a9cee..2939d32a0e9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2014-04-16 Alan Modra + + * config/tc-tilegx.h (TC_CONS_FIX_NEW): Add RELOC arg. + * config/tc-tilepro.h (TC_CONS_FIX_NEW): Likewise. + 2014-04-10 Senthil Kumar Selvaraj * config/tc-avr.c: Add new flag mlink-relax. diff --git a/gas/config/tc-tilegx.h b/gas/config/tc-tilegx.h index bdeecdc9660..6de89da0283 100644 --- a/gas/config/tc-tilegx.h +++ b/gas/config/tc-tilegx.h @@ -53,7 +53,7 @@ struct tilegx_operand; extern void tilegx_cons_fix_new (struct frag *, int, int, struct expressionS *); -#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ +#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RELOC) \ tilegx_cons_fix_new (FRAG, WHERE, NBYTES, EXP) extern int tilegx_parse_name (char *, expressionS *, char *); diff --git a/gas/config/tc-tilepro.h b/gas/config/tc-tilepro.h index edb51d09568..92d31b150dd 100644 --- a/gas/config/tc-tilepro.h +++ b/gas/config/tc-tilepro.h @@ -54,7 +54,7 @@ struct tilepro_operand; extern void tilepro_cons_fix_new (struct frag *, int, int, struct expressionS *); -#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ +#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RELOC) \ tilepro_cons_fix_new (FRAG, WHERE, NBYTES, EXP) extern int tilepro_parse_name (char *, expressionS *, char *);