37eb859d2b790867b2455db3ce68c38b7e9223ad
[cparser] / TODO
1 Lexer:
2 - Add preprocessor code
3 - proper handling of different file encodings, parsing non-ascii strings
4
5 Parser:
6 - the expect macros abort functions directly. This leads to some functions
7   not resetting the current context properly (parse_for)
8 - label: declaration; is no valid C99 but we parse it anyway
9 - designator support for initializers
10 - add constant folding code
11 - Refactor code, so code to handle number values and strings is
12   an own module and replacable
13
14 ast2firm:
15 - output source file positions for panics...
16
17
18 Coole Warnungen:
19
20         int x = 5;
21         x = bla():
22
23         -> dead assignment