avoid warning uninitialized
This commit is contained in:
parent
9a7173bf69
commit
d62301b050
1 changed files with 1 additions and 1 deletions
2
tcc.c
2
tcc.c
|
@ -9208,7 +9208,7 @@ static void decl_initializer_alloc(CType *type, AttributeDef *ad, int r,
|
||||||
{
|
{
|
||||||
int size, align, addr, data_offset;
|
int size, align, addr, data_offset;
|
||||||
int level;
|
int level;
|
||||||
ParseState saved_parse_state;
|
ParseState saved_parse_state = {0};
|
||||||
TokenString init_str;
|
TokenString init_str;
|
||||||
Section *sec;
|
Section *sec;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue