X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ast_t.h;h=6b922bcd7ef6f3446f89f4f1a1a955733dade8f0;hb=4d58018b7aec14df0a55975e959db73005fb648f;hp=61bd6a44051a3d8ede3320a637475b8c654f23e5;hpb=3bd432f7fe5fa4d3f84ddeaf5806398c141e4f28;p=cparser diff --git a/ast_t.h b/ast_t.h index 61bd6a4..6b922bc 100644 --- a/ast_t.h +++ b/ast_t.h @@ -224,6 +224,7 @@ struct initializer_t { struct declaration_t { unsigned char namespace; unsigned char storage_class; + unsigned int address_taken : 1; type_t *type; symbol_t *symbol; source_position_t source_position; @@ -286,9 +287,6 @@ struct declaration_statement_t { statement_t statement; declaration_t *declarations_begin; declaration_t *declarations_end; - - int value_number; /**< filled in by semantic phase */ - int refs; }; struct if_statement_t {