aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/921112-1.c
blob: 5946398e3c0ddc1c0cbe06b60877dae6afab7818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
union u {
  struct { int i1, i2; } t;
  double d;
} x[2], v;

f (x, v)
     union u *x, v;
{
  *++x = v;
}

main()
{
  x[1].t.i1 = x[1].t.i2 = 0;
  v.t.i1 = 1;
  v.t.i2 = 2;
  f (x, v);
  if (x[1].t.i1 != 1 || x[1].t.i2 != 2)
    abort ();
  exit (0);
}