From: Jan Beulich Date: Fri, 7 Mar 2025 07:10:57 +0000 (+0100) Subject: cris: use is_end_of_stmt() X-Git-Tag: binutils-2_45~1315 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13381aae83e1abd1653ed6c950a7b55583d92dd8;p=thirdparty%2Fbinutils-gdb.git cris: use is_end_of_stmt() Fix use of is_end_of_line[] directly instead of through the is_end_of_stmt() macro. --- diff --git a/gas/config/tc-cris.c b/gas/config/tc-cris.c index c9c16f96745..22048694f4b 100644 --- a/gas/config/tc-cris.c +++ b/gas/config/tc-cris.c @@ -2094,7 +2094,7 @@ cris_process_instruction (char *insn_text, struct cris_instruction *out_insnp, /* As discard_rest_of_line, but without continuing to the next line. */ - while (!is_end_of_line[(unsigned char) *input_line_pointer]) + while (!is_end_of_stmt (*input_line_pointer)) input_line_pointer++; return; }