URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr16566-2.c] - Rev 297
Compare with Previous | Blame | View Log
/* ICE with flexible arrays in non-lvalue structures. Bug 16566 (comment #5). */ /* { dg-options "-Wno-psabi" { target { { i?86-*-* x86_64-*-* } && lp64 } } } */ struct A { int i; int x[]; }; int foo(struct A a) { return (a,a).x[0]; }