static void
s_proc (int ignore ATTRIBUTE_UNUSED)
{
- while (!is_end_of_line[(unsigned char) *input_line_pointer])
+ while (!is_end_of_stmt (*input_line_pointer))
{
++input_line_pointer;
}
char *end = ++input_line_pointer;
int npar = 0;
- while (! is_end_of_line[(c = *end)])
+ while (! is_end_of_stmt (c = *end))
{
if (c == '(')
npar++;
input_line_pointer++;
SKIP_WHITESPACE ();
c = *input_line_pointer;
- if (! is_end_of_line[c] && c != ',')
+ if (! is_end_of_stmt (c) && c != ',')
as_bad (_("Illegal operands: garbage after %%r_%s%d()"),
sparc_cons_special_reloc, size * 8);
}