URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [parm-forwdecl-4.c] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test GNU parameter forward declarations. OK with -Wredundant-decls. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "-Wredundant-decls" } */ int f1(int a; int a); int f2(int a; int a) { return 0; } int f3(int a; int a; int a); int f4(int a; int a; int a) { return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log