d0919f55bd
Cparser is a recursive descent C99 parser written in C99. It contains a lexer, a parser, and the appropriate constructs; it does AST and semantic analysis. It is currently used as a frontend to the libFirm intermediate representation. However, it can be used independently, and also is able to bootstrap itself. Currently, cparser uses an external preprocessor.
6 lines
364 B
Text
6 lines
364 B
Text
Cparser is a recursive descent C99 parser written in C99. It contains
|
|
a lexer, a parser, and the appropriate constructs; it does AST and
|
|
semantic analysis. It is currently used as a frontend to the
|
|
libFirm intermediate representation. However, it can be used
|
|
independently, and also is able to bootstrap itself. Currently, cparser
|
|
uses an external preprocessor.
|