summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/ext.c
blob: 8fa8cd733633e379476678ece8910705462f6c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct foo
{
  unsigned b31 : 1;
  unsigned b30 : 1;
  unsigned b29 : 1;
  unsigned b28 : 1;
  unsigned rest : 28;
};
foo(a)
     struct foo a;
{
  return a.b30;
}