aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/b3.c
blob: af693f77931f9ddda9cebe53369111fcc20b9623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct tree_common
{
  unsigned int code : 9;
  unsigned int code2 : 7;
};

static int
duplicate_decls (x)
     register struct tree_common x;
{
  return x.code2;
}