tree-optimization/115602 - SLP CSE results in cycles
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / bf-layout-1.c
blobe721bf7de86725591bdc29cbfa3ab4f2faaddb9e
1 void abort (void);
2 void exit (int);
4 struct { long f8:8; long f24:24; } a;
5 struct { long f32:32; } b;
7 int
8 main (void)
10 if (sizeof (a) != sizeof (b))
11 abort ();
12 exit (0);