diff options
| author | 2023-05-28 12:21:34 +0200 | |
|---|---|---|
| committer | 2023-05-28 12:34:08 +0200 | |
| commit | 784cda65436627e8b44ea02e4266a1b91ecb3ca8 (patch) | |
| tree | d1b4c5c00a5482dea8abc3c2484ab18947425865 /parse.h | |
| parent | 9c440c027913a7e8f1a417bd93d98628e8f85df4 (diff) | |
more memory efficient symbol tables
Diffstat (limited to 'parse.h')
| -rw-r--r-- | parse.h | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -177,19 +177,6 @@ struct decl { int id; }; -struct env { - struct env *up; - struct decls { - struct decls *prev; - struct decl decl; - } *decls; - struct tagged { - struct tagged *prev; - struct span span; - union type t; - } *tagged; -}; - enum evalmode { EVINTCONST, EVARITH, |