diff options
author | Nick Clifton <nickc@redhat.com> | 2001-09-24 14:47:10 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-09-24 14:47:10 +0000 |
commit | 89b57c9acc2dd358b76bdfe5a2b960a2fb17fc22 (patch) | |
tree | 97c81f5bc437612c19557461a518aa0c7452680c /gas/config/tc-arc.h | |
parent | 7ab98e9e4f7a1f9b904a1b9dbcbb9c9323a33f8f (diff) | |
download | gdb-89b57c9acc2dd358b76bdfe5a2b960a2fb17fc22.zip gdb-89b57c9acc2dd358b76bdfe5a2b960a2fb17fc22.tar.gz gdb-89b57c9acc2dd358b76bdfe5a2b960a2fb17fc22.tar.bz2 |
fix compile time warning messages
Diffstat (limited to 'gas/config/tc-arc.h')
-rw-r--r-- | gas/config/tc-arc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-arc.h b/gas/config/tc-arc.h index 463400c..86b9253 100644 --- a/gas/config/tc-arc.h +++ b/gas/config/tc-arc.h @@ -59,11 +59,11 @@ extern const char *arc_target_format; /* The ARC needs to parse reloc specifiers in .word. */ -extern void arc_parse_cons_expression (); +extern void arc_parse_cons_expression PARAMS ((struct expressionS *, unsigned)); #define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \ arc_parse_cons_expression (EXP, NBYTES) -extern void arc_cons_fix_new (); +extern void arc_cons_fix_new PARAMS ((struct frag *, int, int, struct expressionS *)); #define TC_CONS_FIX_NEW(FRAG, WHERE, NBYTES, EXP) \ arc_cons_fix_new (FRAG, WHERE, NBYTES, EXP) |