mirror of
https://github.com/frida/tinycc
synced 2024-11-24 00:29:38 +03:00
add C11 _Static_assert support
This commit is contained in:
parent
85483f321d
commit
5a0101856b
13
tccgen.c
13
tccgen.c
@ -7445,6 +7445,19 @@ static int decl0(int l, int is_for_loop_init, Sym *func_sym)
|
||||
AttributeDef ad, adbase;
|
||||
|
||||
while (1) {
|
||||
if (tok == TOK_STATIC_ASSERT) {
|
||||
int c;
|
||||
|
||||
next();
|
||||
skip('(');
|
||||
c = expr_const();
|
||||
skip(',');
|
||||
if (c == 0)
|
||||
tcc_error("%s", get_tok_str(tok, &tokc));
|
||||
next();
|
||||
skip(')');
|
||||
continue;
|
||||
}
|
||||
if (!parse_btype(&btype, &adbase)) {
|
||||
if (is_for_loop_init)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user