This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [BUILDROBOT] m86k breakage


On Sat, Aug 16, 2014 at 04:14:59PM +0200, Jan-Benedict Glaw wrote:
> I think this is caused by the "gas TC_PARSE_CONS_EXPRESSION
> communication with TC_CONS_FIX_NEW" commit (April 8th).

Guilty as charged.

    	* read.c (parse_mri_cons): Warning fix.

diff --git a/gas/read.c b/gas/read.c
index 183ef2c..2d5fdf1 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;

-- 
Alan Modra
Australia Development Lab, IBM


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]