URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20050330-2.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fprofile-generate" } */ struct S { int a; void **b; }; void foo (struct S *x, int y) { if (!x) return; if (y >= x->a) return; x->a--; for (; y < x->a; y++) x->b[y] = x->b[y + 1]; x->b[x->a] = (void *) 0; } /* { dg-final { cleanup-coverage-files } } */
Go to most recent revision | Compare with Previous | Blame | View Log