accept multiple comma separated symbols for .globl/.global directives, like gas does

This commit is contained in:
Joe Soroka
2011-01-20 02:00:50 -08:00
parent 0a50e6c933
commit f43fafc680
2 changed files with 7 additions and 2 deletions

View File

@ -481,7 +481,7 @@ static void asm_parse_directive(TCCState *s1)
break;
case TOK_ASM_globl:
case TOK_ASM_global:
{
do {
Sym *sym;
next();
@ -492,7 +492,7 @@ static void asm_parse_directive(TCCState *s1)
}
sym->type.t &= ~VT_STATIC;
next();
}
} while (tok == ',');
break;
case TOK_ASM_string:
case TOK_ASM_ascii: