aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2003-07-22 15:27:06 +0000
committerH.J. Lu <hjl.tools@gmail.com>2003-07-22 15:27:06 +0000
commitb41b1f95b76030c2f695d94485afab9212a20a06 (patch)
tree37dd353548f5b17428c7ea9668f1559019351d44 /gas/read.c
parentd416627cc3e021feac66e61dab8560371dfdb1f4 (diff)
downloadfsf-binutils-gdb-b41b1f95b76030c2f695d94485afab9212a20a06.zip
fsf-binutils-gdb-b41b1f95b76030c2f695d94485afab9212a20a06.tar.gz
fsf-binutils-gdb-b41b1f95b76030c2f695d94485afab9212a20a06.tar.bz2
2003-07-22 H.J. Lu <hongjiu.lu@intel.com>
* read.c (do_parse_cons_expression): Mark nbytes unused to silence gcc.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/read.c b/gas/read.c
index 4179348..ef2340c 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);
}