diff options
author | Nick Clifton <nickc@redhat.com> | 2014-04-09 14:05:58 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2014-04-09 14:05:58 +0100 |
commit | 00c06fdc57ab89d14789b5207763410a79c39a11 (patch) | |
tree | 6993beb73531d9a66f63273c5b33d45dad4c90a6 /gas/config/tc-rl78.h | |
parent | 15a9128a964499b78bd70ef3d2dc73edce56d825 (diff) | |
download | binutils-gdb-00c06fdc57ab89d14789b5207763410a79c39a11.tar.gz |
Fix a few more targets affected by the change to the TC_CONS_FIX_NEW macro.
* config/tc-rl78.h (TC_CONS_FIX_NEW): Add RELOC parameter.
* config/tc-z80.h (TC_CONS_FIX_NEW): Discard RELOC parameter.
* config/tc-aarch64.h (TC_CONS_FIX_NEW): Discard RELOC parameter.
* read.c (emit_expr_fix): Mark the r parameter as potentially
unused.
Diffstat (limited to 'gas/config/tc-rl78.h')
-rw-r--r-- | gas/config/tc-rl78.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-rl78.h b/gas/config/tc-rl78.h index 2621ab6448a..5b6a3125c22 100644 --- a/gas/config/tc-rl78.h +++ b/gas/config/tc-rl78.h @@ -67,7 +67,7 @@ extern long md_pcrel_from_section (struct fix *, segT); rl78_validate_fix_sub (FIX) extern int rl78_validate_fix_sub (struct fix *); -#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ +#define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP, RET) \ rl78_cons_fix_new (FRAG, WHERE, NBYTES, EXP) extern void rl78_cons_fix_new (fragS *, int, int, expressionS *); |