From: H.J. Lu Date: Tue, 22 Jul 2003 15:27:06 +0000 (+0000) Subject: 2003-07-22 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b41b1f95b76030c2f695d94485afab9212a20a06;p=binutils-gdb.git 2003-07-22 H.J. Lu * read.c (do_parse_cons_expression): Mark nbytes unused to silence gcc. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 07f44b52120..b1176247b23 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-07-22 H.J. Lu + + * read.c (do_parse_cons_expression): Mark nbytes unused to + silence gcc. + 2003-07-22 Alexandre Oliva * config/tc-h8300.c (get_specific): No PCREL8 encoding for bsr/bc diff --git a/gas/read.c b/gas/read.c index 41793480751..ef2340caa0e 100644 --- a/gas/read.c +++ b/gas/read.c @@ -3348,7 +3348,8 @@ parse_repeat_cons PARAMS ((expressionS *exp, unsigned int nbytes)); #endif void -do_parse_cons_expression (expressionS *exp, int nbytes) +do_parse_cons_expression (expressionS *exp, + int nbytes ATTRIBUTE_UNUSED) { TC_PARSE_CONS_EXPRESSION (exp, nbytes); }