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/] [pr33382.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
struct Foo { int i; int j[]; }; struct Foo x = { 1, { 2, 0, 2, 3 } }; int foo(void) { x.j[0] = 1; return x.j[1]; } extern void abort(void); int main() { if (foo() != 0) abort(); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log