From: Jan Beulich Date: Fri, 7 Mar 2025 07:10:23 +0000 (+0100) Subject: Alpha: use is_end_of_stmt() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=74838eae6b5aa80baca522baad6038ea0cbe4f80;p=thirdparty%2Fbinutils-gdb.git Alpha: use is_end_of_stmt() ... instead of open-coding it. Note that writes to the array need to be left alone; they can only be converted when the array is folded into lex_type[]. --- diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c index fdd5db7f299..b39a7c850c3 100644 --- a/gas/config/tc-alpha.c +++ b/gas/config/tc-alpha.c @@ -4138,7 +4138,7 @@ s_alpha_usepv (int unused ATTRIBUTE_UNUSED) sym = symbol_find_or_make (name); name_end = restore_line_pointer (name_end); - if (! is_end_of_line[(unsigned char) name_end]) + if (! is_end_of_stmt (name_end)) input_line_pointer++; if (name_end != ',')