aboutsummaryrefslogtreecommitdiff
path: root/test/struct-flexible-array.qbe
AgeCommit message (Collapse)Author
2022-05-09expr: Use integer type for member access intermediate address calculationMichael Forney
2021-07-02qbe: Remove more unnecessary copy instructionsMichael Forney
Now that we don't track QBE types within values, we don't have to worry about generating incorrect SSA when passing an 'l' value to a function taking a 'w'. So we can just return the source value instead of emitting a dummy copy instruction.
2021-07-01decl: Disallow members with incomplete typesMichael Forney
Make an exception for flexible array members, though we should also check that the flexible array member, if any, is last.