DragonCompiler
DragonCompiler copied to clipboard
A C compiler written in C
Results
4
DragonCompiler issues
Sort by
recently updated
recently updated
newest added
When I am learning this lecture, I found a bug in lexer.c. This lexer can't distinguish between eg. 0xaa, xaa. The former should be recognized as a hexadecimal token and...
``` struct dog; void main() { struct dog* b; } struct dog { int x; }; ``` results in a seg fault