OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 930603-1.c
1 union u { union u *a; double d; };
2 union u *s, g();
3
4 f()
5 {
6   union u x = g();
7
8   s[0] = *x.a;
9   s[1] = g();
10 }