aboutsummaryrefslogtreecommitdiff
path: root/init.c
AgeCommit message (Collapse)Author
2019-02-24Check for negative array lengths/indicesMichael Forney
2019-02-22Fix size of incomplete array types initialized with stringsMichael Forney
updatearray takes an index, so was allocating an extra byte.
2019-02-20Remove some unused variablesMichael Forney
2019-02-15Some small cleanupsMichael Forney
2019-02-15Don't embed anonymous struct members into parentMichael Forney
While this works nicely for structs, when unions are involved it makes it impossible to find the next member to initialize without keeping track of extra data per member.
2019-02-15Fix some potential uninitialized fieldsMichael Forney
2019-02-14Allow initializing array with longer stringsMichael Forney
2019-02-13Ignore qualifiers when parsing initializersMichael Forney
2019-02-12Initial importMichael Forney