URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20050607-1.c] - Rev 823
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Wpadded" } /* The struct internally constructed for the nested function should not result in a warning from -Wpadded. */ extern int baz(int (*) (int)); int foo(void) { int k = 3; int bar(int x) { return x + k; } return baz(bar); }
Go to most recent revision | Compare with Previous | Blame | View Log