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

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

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