URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20021116-1.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target fpic } } */ /* { dg-options "-O2 -fpic" } */ void ** foo (void **x, int y, void *z) { switch (y) { case 162: *x = z; break; case 164: *x = z; break; case 165: *x = z; break; case 166: *x = z; break; case 163: *x = z; break; default: goto out; } return x; out: return (void **) 0; }
Go to most recent revision | Compare with Previous | Blame | View Log