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