mirror of
git://repo.or.cz/tinycc.git
synced 2026-07-04 02:18:50 +08:00
avoid warning uninitialized
This commit is contained in:
parent
9a7173bf69
commit
d62301b050
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…
Reference in New Issue
Block a user