URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr36504.c] - Rev 689
Compare with Previous | Blame | View Log
/* PR tree-optimization/36504 */ /* { dg-do compile } */ /* { dg-options "-O3 -fprefetch-loop-arrays -w" } */ struct A { struct { int a; } b[8]; }; struct B { int c; int d; }; struct C { struct B d; }; void bar (struct C *, int); struct B foo (struct C *p, struct A *e, int b) { struct B q; bar (p, e->b[b].a); return q; } void baz (int b, struct A *e) { struct C p; for (; b; ++b) p.d = foo (&p, e, b); }