xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/20010904-1.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 typedef struct x { int a; int b; } __attribute__((aligned(32))) X;
2 typedef struct y { X x[32]; int c; } Y;
3 
4 Y y[2];
5 
main(void)6 int main(void)
7 {
8   if (((char *)&y[1] - (char *)&y[0]) & 31)
9     abort ();
10   exit (0);
11 }
12