With the switch to the use of is_end_of_stmt() in
2dd0370c433d
("rl78: use is_whitespace()") the open-coded checking against
line_separator_chars[] can be dropped.
if (is_end_of_stmt (* input_line_pointer)
|| * input_line_pointer == ','
|| strchr (comment_chars, * input_line_pointer)
- || strchr (line_comment_chars, * input_line_pointer)
- || strchr (line_separator_chars, * input_line_pointer))
+ || strchr (line_comment_chars, * input_line_pointer))
return;
as_bad (_("%%%s() must be outermost term in expression"), fname);