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.2.2/] [gcc/] [testsuite/] [gcc.dg/] [debug/] [pr33316.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR debug/33316 */ int foo (void *x, int y) { const struct { int d[y]; } *a = x; return a[0].d[0]; } int bar (void *x, int y) { const struct S { int d[y]; } *a = x; return a[0].d[0]; }
Go to most recent revision | Compare with Previous | Blame | View Log