aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/bf-layout-1.c
blob: a82429ba2088f52eeee412097c7d4731fd50b270 (plain)
1
2
3
4
5
6
7
8
9
struct { long f8:8; long f24:24; } a;
struct { long f32:32; } b;

main ()
{
  if (sizeof (a) != sizeof (b))
    abort ();
  exit (0);
}