URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [debug/] [vta-2.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do compile } */ static int bar (void *a, unsigned int b, int n) { int c = *(unsigned long *) a % b; *(unsigned long *) a = (int) (*(unsigned long *) a) / b; return c; } int foo (unsigned long x, int *y, int z) { int level; for (level = 0; level < *y; level++) { bar (&x, z, sizeof (x)); if (x) return *y - 1; } }