URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [921112-1.c] - Rev 301
Go to most recent revision | 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); }
Go to most recent revision | Compare with Previous | Blame | View Log