mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 09:14:14 +08:00
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.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-04-16 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* 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 <senthil_kumar.selvaraj@atmel.com>
|
2014-04-10 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
|
||||||
|
|
||||||
* config/tc-avr.c: Add new flag mlink-relax.
|
* config/tc-avr.c: Add new flag mlink-relax.
|
||||||
|
@ -53,7 +53,7 @@ struct tilegx_operand;
|
|||||||
|
|
||||||
extern void tilegx_cons_fix_new (struct frag *, int,
|
extern void tilegx_cons_fix_new (struct frag *, int,
|
||||||
int, struct expressionS *);
|
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)
|
tilegx_cons_fix_new (FRAG, WHERE, NBYTES, EXP)
|
||||||
|
|
||||||
extern int tilegx_parse_name (char *, expressionS *, char *);
|
extern int tilegx_parse_name (char *, expressionS *, char *);
|
||||||
|
@ -54,7 +54,7 @@ struct tilepro_operand;
|
|||||||
extern void tilepro_cons_fix_new (struct frag *, int,
|
extern void tilepro_cons_fix_new (struct frag *, int,
|
||||||
int, struct expressionS *);
|
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)
|
tilepro_cons_fix_new (FRAG, WHERE, NBYTES, EXP)
|
||||||
|
|
||||||
extern int tilepro_parse_name (char *, expressionS *, char *);
|
extern int tilepro_parse_name (char *, expressionS *, char *);
|
||||||
|
Reference in New Issue
Block a user