aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/930603-1.c
blob: 643cc52d4c2be0c17b6a3a3bf176144c5f78bd23 (plain)
1
2
3
4
5
6
7
8
9
10
union u { union u *a; double d; };
union u *s, g();

f()
{
  union u x = g();

  s[0] = *x.a;
  s[1] = g();
}