URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [921112-1.c] - Rev 12
Compare with Previous | Blame | View Log
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); }