operandS = ++operandE;
/* Set register base. */
- while ((*operandE != ',') && (! ISSPACE (*operandE)))
+ while ((*operandE != ',') && (! is_whitespace (*operandE)))
operandE++;
*operandE++ = '\0';
if ((cur_arg->r = get_register (operandS)) == nullregister)
operandS, ins_parse);
/* Skip leading white space. */
- while (ISSPACE (*operandE))
+ while (is_whitespace (*operandE))
operandE++;
operandS = operandE;
operandS, ins_parse);
/* Skip leading white space. */
- while (ISSPACE (*operandE))
+ while (is_whitespace (*operandE))
operandE++;
operandS = operandE;
continue;
}
- if (*operandT == ' ')
+ if (is_whitespace (*operandT))
as_bad (_("Illegal operands (whitespace): `%s'"), ins_parse);
if (*operandT == '(')
while (*++p != ']')
{
- if (*p == ',' || *p == ' ')
+ if (*p == ',' || is_whitespace (*p))
continue;
if (*p == 'd')
reset_vars (op);
/* Strip the mnemonic. */
- for (param = op; *param != 0 && !ISSPACE (*param); param++)
+ for (param = op; *param != 0 && !is_whitespace (*param); param++)
;
c = *param;
*param++ = '\0';