mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-10-31 11:04:55 +00:00
12 lines
227 B
C
12 lines
227 B
C
typedef struct x { int a; int b; } __attribute__((aligned(32))) X;
|
|
typedef struct y { X x; X y[31]; int c; } Y;
|
|
|
|
Y y[2];
|
|
|
|
int main(void)
|
|
{
|
|
if (((char *)&y[1] - (char *)&y[0]) & 31)
|
|
abort ();
|
|
exit (0);
|
|
}
|