| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | use static declaration from prototype | grischka | 2009-06-17 | 1 | -3/+8 |
| | | | | | | | | | static int func(); ... int func() { } As result, func needs to be static. | ||||
| * | unions: initzialize only one field | grischka | 2009-06-17 | 1 | -0/+18 |
| | | | | | | | | | | | | struct { union { int a,b; }; int c; } sss = { 1,2 }; This had previously assigned 1,2 to a,b and 0 to c which is wrong. | ||||
| * | pass constness from structs to members | Sam Watkins | 2009-06-16 | 1 | -0/+3 |
| | | |||||
| * | move some global variables into TCCState | grischka | 2009-05-11 | 1 | -10/+10 |
| | | |||||
| * | move parser/generator to tccgen.c | grischka | 2009-05-05 | 1 | -0/+5102 |
| | | |||||
| * | new files: tcc.h libtcc.c tccpp.c tccgen.c | grischka | 2009-05-05 | 1 | -0/+20 |
