OSDN Git Service

Fix PR 17408 and PR 17409.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / bf-layout-1.c
1 struct { long f8:8; long f24:24; } a;
2 struct { long f32:32; } b;
3
4 main ()
5 {
6   if (sizeof (a) != sizeof (b))
7     abort ();
8   exit (0);
9 }