Age | Commit message (Expand) | Author |
2022-02-12 | multiplication and division | pommicket |
2022-02-12 | assignments, STATEMENT_EXPRESSIONs | pommicket |
2022-02-12 | codegen for . -> , | pommicket |
2022-02-12 | codegen for address of | pommicket |
2022-02-12 | codegen for dereference, subscript | pommicket |
2022-02-12 | local variables | pommicket |
2022-02-12 | codegen for global variables | pommicket |
2022-02-11 | subtraction codegen | pommicket |
2022-02-11 | addition | pommicket |
2022-02-11 | fixed prefix -- parsing; codegen for unary + - ~ ! | pommicket |
2022-02-10 | generating code for casts! | pommicket |
2022-02-10 | return, integer literals | pommicket |
2022-02-10 | first working executable! | pommicket |
2022-02-10 | fix some calling convention stuff | pommicket |
2022-02-09 | start codegen | pommicket |
2022-02-09 | more parsing tests, fixed more bugs | pommicket |
2022-02-08 | fixed #include -> #include in certain cases, found a new bug | pommicket |
2022-02-08 | fix declaring multiple variables after struct definition | pommicket |
2022-02-08 | more parsing tests, more fixes | pommicket |
2022-02-07 | fix #elif line number problem with parse test | pommicket |
2022-02-07 | fix a bunch of problems from parsing test | pommicket |
2022-02-07 | fix multi-line fmacro invocations | pommicket |
2022-02-07 | capital number suffixes (oops) | pommicket |
2022-02-07 | handle object macro definitions beginning with ( oops | pommicket |
2022-02-07 | handle fmacros with no parameters | pommicket |
2022-02-07 | defined in #if (forgot about that earlier) | pommicket |
2022-02-07 | cleanup - declaring functions without defining them, etc. | pommicket |
2022-02-07 | proper call typing? | pommicket |
2022-02-07 | parsing calls, mostly | pommicket |
2022-02-06 | using function names | pommicket |
2022-02-06 | function parameters, fix local variables | pommicket |
2022-02-06 | switch, for | pommicket |
2022-02-06 | do | pommicket |
2022-02-06 | while | pommicket |
2022-02-05 | local variables in expressions | pommicket |
2022-02-05 | braced initializers in local declarations | pommicket |
2022-02-05 | start local declarations | pommicket |
2022-02-05 | block static variables seem to be working | pommicket |
2022-02-05 | start local static declarations | pommicket |
2022-02-04 | bugfix, planning static variables | pommicket |
2022-02-04 | parse goto, case | pommicket |
2022-02-04 | parsing break, continue, return | pommicket |
2022-02-03 | start parsing statements (not a lot yet) | pommicket |
2022-02-03 | dereferencing function pointers | pommicket |
2022-02-03 | parsing C is annoying | pommicket |
2022-02-02 | fixed cast parsing bug | pommicket |
2022-02-02 | arrays decay to pointers - also found bug | pommicket |
2022-02-02 | fixed bug when evaluating division | pommicket |
2022-02-02 | struct initializers, found some bugs (not fixed yet) | pommicket |
2022-02-02 | union initializers, fix bug with array initializers | pommicket |