aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-z80.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2014-04-09 14:05:58 +0100
committerNick Clifton <nickc@redhat.com>2014-04-09 14:05:58 +0100
commit00c06fdc57ab89d14789b5207763410a79c39a11 (patch)
tree6993beb73531d9a66f63273c5b33d45dad4c90a6 /gas/config/tc-z80.h
parent15a9128a964499b78bd70ef3d2dc73edce56d825 (diff)
downloadgdb-00c06fdc57ab89d14789b5207763410a79c39a11.zip
gdb-00c06fdc57ab89d14789b5207763410a79c39a11.tar.gz
gdb-00c06fdc57ab89d14789b5207763410a79c39a11.tar.bz2
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-z80.h')
-rw-r--r--gas/config/tc-z80.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-z80.h b/gas/config/tc-z80.h
index 72e868f..7409871 100644
--- a/gas/config/tc-z80.h
+++ b/gas/config/tc-z80.h
@@ -55,7 +55,7 @@
/* Define some functions to be called by generic code. */
#define md_end z80_md_end
#define md_start_line_hook() { if (z80_start_line_hook ()) continue; }
-#define TC_CONS_FIX_NEW z80_cons_fix_new
+#define TC_CONS_FIX_NEW(f,w,s,e,r) z80_cons_fix_new ((f), (w), (s), (e))
extern void z80_md_end (void);
extern int z80_start_line_hook (void);