diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/read.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 428dadd..909b4f4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2014-08-18 Alan Modra <amodra@gmail.com> + + * read.c (parse_mri_cons): Warning fix. + 2014-08-14 Alan Modra <amodra@gmail.com> * configure.ac: Move ACX_LARGEFILE after LT_INIT. @@ -4605,7 +4605,7 @@ parse_mri_cons (expressionS *exp, unsigned int nbytes) && (input_line_pointer[1] != '\'' || (*input_line_pointer != 'A' && *input_line_pointer != 'E'))) - TC_PARSE_CONS_EXPRESSION (exp, nbytes); + (void) TC_PARSE_CONS_EXPRESSION (exp, nbytes); else { unsigned int scan; |