unsigned int insn_length;
/* Get the opcode. */
- for (s = str; *s != '\0' && ! ISSPACE (*s); s++)
+ for (s = str; ! is_end_of_stmt (*s) && ! is_whitespace (*s); s++)
;
if (*s != '\0')
*s++ = '\0';
}
str = s;
- while (ISSPACE (*str))
+ while (is_whitespace (*str))
++str;
#ifdef OBJ_XCOFF
{
do
++str;
- while (ISSPACE (*str));
+ while (is_whitespace (*str));
endc = ',';
}
}
}
}
- while (ISSPACE (*str))
+ while (is_whitespace (*str))
++str;
if (*str != '\0')
/* Skip the TOC symbol name. */
while (is_part_of_name (*input_line_pointer)
- || *input_line_pointer == ' '
+ || is_whitespace (*input_line_pointer)
|| *input_line_pointer == '['
|| *input_line_pointer == ']'
|| *input_line_pointer == '{'