comparison test/suite_aggrs/README.txt @ 462:653b65580cb4

suite_aggr: - added arrays (inside of structs/unions, only, as only way to pass/return them by value) - cleanups and pregen of source
author Tassilo Philipp
date Tue, 01 Feb 2022 21:44:18 +0100
parents 236015fdf7a8
children
comparison
equal deleted inserted replaced
461:236015fdf7a8 462:653b65580cb4
1 suite_aggrs for dyncall written in C and Lua. 1 suite_aggrs for dyncall written in C and Lua.
2 2
3 Tests aggregates (structs, unions) passed by value, along with other, 3 Tests aggregates (structs, unions and arrays) passed by value, along with
4 non-aggregate args. 4 other, non-aggregate args. Note, arrays are only passed/returned by value as
5 members of structs and unions, as they woult decay to a pointer if passed to a
6 function and cannot be returned.
7 So this test suite does not generate any arrays outside of structs and unions.
5 8
6 A macro AGGR_MISALIGN can be used in globals.c to intentionally misalign 9 A macro AGGR_MISALIGN can be used in globals.c to intentionally misalign
7 aggregate instances. 10 aggregate instances.
8 11