From 429b58ab66c3e09a234eeebeb78a3dfb7ef70205 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Mon, 3 Feb 2025 12:24:48 +0100 Subject: [PATCH] C30: use is_whitespace() Convert an open-coded check. --- gas/config/tc-tic30.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 == '_') -- 2.47.3