URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [struct-ini-4.c] - Rev 826
Compare with Previous | Blame | View Log
struct s { int a[3]; int c[3]; }; struct s s = { c: {1, 2, 3} }; main() { if (s.c[0] != 1) abort (); exit (0); }