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). Also convert an open-coded check.
static inline char *
skip_space (char *s)
{
- while (*s == ' ' || *s == '\t')
+ while (is_whitespace (*s))
++s;
return s;
this_dest = 0;
/* Drop leading whitespace (probably not required). */
- while (*str == ' ')
+ while (is_whitespace (*str))
str++;
/* Get opcode mnemonic and make sure it's in lower case. */