2003-07-22 H.J. Lu <hongjiu.lu@intel.com>

* read.c (do_parse_cons_expression): Mark nbytes unused to
	silence gcc.
This commit is contained in:
H.J. Lu 2003-07-22 15:27:06 +00:00
parent d416627cc3
commit b41b1f95b7
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-07-22 H.J. Lu <hongjiu.lu@intel.com>
* read.c (do_parse_cons_expression): Mark nbytes unused to
silence gcc.
2003-07-22 Alexandre Oliva <aoliva@redhat.com> 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
* config/tc-h8300.c (get_specific): No PCREL8 encoding for bsr/bc * config/tc-h8300.c (get_specific): No PCREL8 encoding for bsr/bc

View file

@ -3348,7 +3348,8 @@ parse_repeat_cons PARAMS ((expressionS *exp, unsigned int nbytes));
#endif #endif
void 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); TC_PARSE_CONS_EXPRESSION (exp, nbytes);
} }