From: Jan Beulich Date: Mon, 3 Feb 2025 11:24:48 +0000 (+0100) Subject: C30: use is_whitespace() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=429b58ab66c3e09a234eeebeb78a3dfb7ef70205;p=thirdparty%2Fbinutils-gdb.git C30: use is_whitespace() Convert an open-coded check. --- diff --git a/gas/config/tc-tic30.c b/gas/config/tc-tic30.c index 21efe8a6d50..6aad8f891cb 100644 --- a/gas/config/tc-tic30.c +++ b/gas/config/tc-tic30.c @@ -180,7 +180,7 @@ md_begin (void) if (ISALPHA (c) || c == '_' || c == '.' || ISDIGIT (c)) identifier_chars[c] = c; - if (c == ' ' || c == '\t') + if (is_whitespace (c)) space_chars[c] = c; if (c == '_')