URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr47743.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ int foo (void *x, int y) { long long a = 1, *b; double *c; if (y) { b = (long long *) x; while (b) a *= *b++; } else { c = (double *) x; while (c) a *= *c++; } return a; }