We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 665a982 + 349f19d commit c115cf4Copy full SHA for c115cf4
asm/preproc.c
@@ -4716,15 +4716,12 @@ static int do_directive(Token *tline, Token **output)
4716
list_for_each(t, tline) {
4717
switch (t->type) {
4718
case TOKEN_WHITESPACE:
4719
+ case TOKEN_COMMA:
4720
break;
4721
case TOKEN_STR:
4722
unquote_token(t);
4723
len += t->len;
4724
- case TOKEN_OTHER:
4725
- if (tok_is(t, ',')) /* permit comma separators */
4726
- break;
4727
- /* else fall through */
4728
default:
4729
nasm_nonfatal("non-string passed to `%s': %s", dname,
4730
tok_text(t));
0 commit comments