diff options
author | Jan Beulich <jbeulich@suse.com> | 2025-02-03 12:24:48 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2025-02-03 12:24:48 +0100 |
commit | 429b58ab66c3e09a234eeebeb78a3dfb7ef70205 (patch) | |
tree | 1bc4b85eb17acd09f040cd6e836c1334688aab01 | |
parent | 5e194d8567bf96014277801ee81c44a55f8aad41 (diff) | |
download | binutils-429b58ab66c3e09a234eeebeb78a3dfb7ef70205.zip binutils-429b58ab66c3e09a234eeebeb78a3dfb7ef70205.tar.gz binutils-429b58ab66c3e09a234eeebeb78a3dfb7ef70205.tar.bz2 |
C30: use is_whitespace()
Convert an open-coded check.
-rw-r--r-- | gas/config/tc-tic30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-tic30.c b/gas/config/tc-tic30.c index 21efe8a..6aad8f8 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 == '_') |