Visium: 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). Also convert an open-coded check.
diff --git a/gas/config/tc-visium.c b/gas/config/tc-visium.c
index 975a0c8..c00db12 100644
--- a/gas/config/tc-visium.c
+++ b/gas/config/tc-visium.c
@@ -866,7 +866,7 @@
static inline char *
skip_space (char *s)
{
- while (*s == ' ' || *s == '\t')
+ while (is_whitespace (*s))
++s;
return s;
@@ -1029,7 +1029,7 @@
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. */