URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr47281.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ struct T; typedef void F(void); F* aux(void (*x)()) { return x; } void make_mess (int); F* get_funloc (void (*x)(int), F* (*y)()) { return y(x); } F* foo () { return get_funloc (make_mess, aux); }
Go to most recent revision | Compare with Previous | Blame | View Log