Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-26 | remove trailing whitespace from test/abi7.ssa | Michael Forney | |
2021-08-23 | parsefields: fix padding calculation | Drew DeVault | |
This was causing issues with aggregate types. A simple reproduction is: type :type.1 = align 8 { 24 } type :type.2 = align 8 { w 1, :type.1 1 } The size of type.2 should be 32, adding only 4 bytes of padding between the first and second field. Prior to this patch, 20 bytes of padding was added instead, causing the type to have a size of 48. Signed-off-by: Drew DeVault <sir@cmpwn.com> |