summaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2014-08-18 09:31:01 +0930
committerAlan Modra <amodra@gmail.com>2014-08-18 09:32:44 +0930
commit1e53931944810798e6741f664bd3ec727272fe11 (patch)
treebc3b521ce672f45c1ff495621787eafe8861c2cb /gas/read.c
parent87ea0aeaa31879f3cfdc91497f14a3f708a3d744 (diff)
downloadbinutils-gdb-1e53931944810798e6741f664bd3ec727272fe11.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/read.c b/gas/read.c
index 183ef2c8fd9..2d5fdf1fdd4 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -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;