Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / 20010904-1.c
blob92b258b52025a99bd465d24b746191b16f81c8fc
1 typedef struct x { int a; int b; } __attribute__((aligned(32))) X;
2 typedef struct y { X x[32]; int c; } Y;
4 Y y[2];
6 int main(void)
8 if (((char *)&y[1] - (char *)&y[0]) & 31)
9 abort ();
10 exit (0);