aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/990829-1.c
blob: 2252821938eb7cdaf031aa1d3dcbd248e054060c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct x
{
  int a:16;
  int b:16;
  int c;
};

bar()
{
  struct x y;
  y.b = 1 < y.a;
  foo(&y);
}