URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [debug/] [pr33316.c] - Rev 829
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