URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr43211.c] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ struct T; struct S { void (*bar)(struct S); }; void bar(struct T t) {} /* { dg-error "" } */ void foo(struct S *s) { s->bar = bar; }
Go to most recent revision | Compare with Previous | Blame | View Log