PR middle-end/83487
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / pr83487-1.h
blobf39d5fd89dd3eb97cb052ed122ad17b6fd1b4998
1 #ifdef PR83487_LARGE
2 struct __attribute__ ((aligned (128))) A {};
3 struct B {};
4 struct C { struct B c[128]; };
5 #else
6 struct __attribute__ ((aligned (16))) A {};
7 struct B {};
8 struct C { struct B c[16]; };
9 #endif