From: Jan Beulich Date: Fri, 7 Mar 2025 07:16:53 +0000 (+0100) Subject: pru: use is_end_of_stmt() X-Git-Tag: binutils-2_45~1303 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1ffe6e3893bcda2d4a5d070d388607ab3857216;p=thirdparty%2Fbinutils-gdb.git pru: use is_end_of_stmt() ... instead of open-coding it. --- diff --git a/gas/config/tc-pru.c b/gas/config/tc-pru.c index 2e9d8e5463e..70a4e76e9b3 100644 --- a/gas/config/tc-pru.c +++ b/gas/config/tc-pru.c @@ -423,7 +423,7 @@ s_pru_set (int equiv) trying a directive. This prevents us from polluting the name space. */ SKIP_WHITESPACE (); - if (is_end_of_line[(unsigned char) *input_line_pointer]) + if (is_end_of_stmt (*input_line_pointer)) { bool done = true; *endline = 0;