From: Jan Beulich Date: Fri, 7 Mar 2025 07:20:27 +0000 (+0100) Subject: C4x: use is_end_of_stmt() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3921d412218b577fb6856dd3044823a466c3098;p=thirdparty%2Fbinutils-gdb.git C4x: use is_end_of_stmt() ... instead of open-coding it. --- diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index d7d31ab9558..97a088c2673 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -1010,7 +1010,7 @@ tic4x_sect (int x ATTRIBUTE_UNUSED) recognised and scanning extends into the next line, stopping with an error (blame Volker Kuhlmann if this is not true). */ - if (is_end_of_line[(unsigned char) c]) + if (is_end_of_stmt (c)) *(--input_line_pointer) = c; demand_empty_rest_of_line ();