summary refs log tree commit diff
path: root/minic
AgeCommit message (Collapse)Author
2015-10-12add super cheap constant folding in minicQuentin Carbonneaux
2015-10-09start implementing basic function callsQuentin Carbonneaux
2015-10-08uniformize naming in minicQuentin Carbonneaux
2015-10-08add clumsy support for string literalsQuentin Carbonneaux
It's currently clumsy because they are given the type 'int *' instead of 'char *', the reason is that the char base type is not supported now. I don't think it would be hard to add proper support for char, though.
2015-10-08update miniyaccQuentin Carbonneaux
2015-10-04remove example fileQuentin Carbonneaux
2015-10-04add gitignore to minic/Quentin Carbonneaux
2015-10-04support unary minusQuentin Carbonneaux
2015-10-04add post {in,de}crement support + fix grammarQuentin Carbonneaux
2015-10-04update test to new syntaxQuentin Carbonneaux
2015-10-04parse functions in minicQuentin Carbonneaux
2015-10-04update miniyaccQuentin Carbonneaux
2015-10-03== and != do not consider signsQuentin Carbonneaux
2015-10-02minor bug in case WhileQuentin Carbonneaux
2015-10-02oops, stupid swap in a printfQuentin Carbonneaux
2015-10-02start an example compiler for a subset of CQuentin Carbonneaux