URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [inline-34.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* Diagnostics for bad references to static objects and functions from inline definitions must take account of declarations after the definition which make it not an inline definition. PR 39556. */ /* { dg-do compile } */ /* { dg-options "-std=c99 -pedantic-errors" } */ static int a1; inline int f1 (void) { return a1; } int f1 (void); static int a2; inline int f2 (void) { return a2; } extern inline int f2 (void); inline void f3 (void) { static int a3; } void f3 (void); inline void f4 (void) { static int a4; } extern inline void f4 (void);
Go to most recent revision | Compare with Previous | Blame | View Log