diff options
author | Alan Modra <amodra@gmail.com> | 2014-08-18 09:31:01 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-08-18 09:32:44 +0930 |
commit | 1e53931944810798e6741f664bd3ec727272fe11 (patch) | |
tree | bc3b521ce672f45c1ff495621787eafe8861c2cb /gas/read.c | |
parent | 87ea0aeaa31879f3cfdc91497f14a3f708a3d744 (diff) | |
download | gdb-1e53931944810798e6741f664bd3ec727272fe11.zip gdb-1e53931944810798e6741f664bd3ec727272fe11.tar.gz gdb-1e53931944810798e6741f664bd3ec727272fe11.tar.bz2 |
Cast result of TC_PARSE_CONS_EXPRESSION
* read.c (parse_mri_cons): Warning fix.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |