Age | Commit message (Expand) | Author |
2022-02-18 | newer version of tcc almost working | pommicket |
2022-02-17 | procuding a (non-working) executable for tcc | pommicket |
2022-02-15 | strtod | pommicket |
2022-02-14 | strtoul, strtol | pommicket |
2022-02-14 | better error for declaring incomplete struct | pommicket |
2022-02-14 | snprintf now working! (fixed problem will calls inside calls) | pommicket |
2022-02-13 | cleanup notes | pommicket |
2022-02-13 | sprintf working! (but not snprintf ...) | pommicket |
2022-02-13 | first C hello world! | pommicket |
2022-02-13 | C compiler done ? va_list/arg program working :) | pommicket |
2022-02-13 | fixed local variables and also structs containing arrays | pommicket |
2022-02-13 | pre/post increment/decrement | pommicket |
2022-02-13 | fix dereferencing function pointer codegen | pommicket |
2022-02-12 | fix casting arguments to parameter type | pommicket |
2022-02-12 | fix generate_function_addr; conditional expressions | pommicket |
2022-02-12 | function calls mostly working | pommicket |
2022-02-12 | assignments, STATEMENT_EXPRESSIONs | 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 | fixed prefix -- parsing; codegen for unary + - ~ ! | pommicket |
2022-02-10 | generating code for casts! | pommicket |
2022-02-10 | fix some calling convention stuff | pommicket |
2022-02-09 | more parsing tests, fixed more bugs | 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 a bunch of problems from parsing test | 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 |