From 9ae0ff9fdd9266a6fdf2e463e58204f050a02589 Mon Sep 17 00:00:00 2001 From: Teddy Date: Tue, 29 Apr 2014 15:17:40 +0800 Subject: ... --- semantics.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'semantics.h') diff --git a/semantics.h b/semantics.h index 0a555df..a6c4df7 100644 --- a/semantics.h +++ b/semantics.h @@ -13,12 +13,14 @@ typedef CSymbol *CSymbol_t; typedef struct CDef CDef; typedef CDef *CDef_t; +typedef struct CBList *CBList_t; struct CVar { char *name; CVar_t next; /* next in the linked list */ CType_t type; int start; CNode *ast; + CBList_t defsite; }; CVar_t cvar_create(char *name, CType_t type, CNode *ast); -- cgit v1.2.3