From: Jan Beulich Date: Mon, 3 Feb 2025 10:50:43 +0000 (+0100) Subject: avr: use is_whitespace() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6295f4c5690900396975913d3694fbb5908c48c6;p=thirdparty%2Fbinutils-gdb.git avr: use is_whitespace() Wherever blanks are permissible in input, tabs ought to be permissible, too. This is particularly relevant when -f is passed to gas (alongside appropriate input). --- diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c index 5976e58dd33..c98ba867d2c 100644 --- a/gas/config/tc-avr.c +++ b/gas/config/tc-avr.c @@ -618,7 +618,7 @@ show_mcu_list (FILE *stream) static inline char * skip_space (char *s) { - while (*s == ' ' || *s == '\t') + while (is_whitespace (*s)) ++s; return s; }