URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [inline6.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-std=gnu89" } */ static int i; extern int j; extern inline int func1 (void) { return i++; /* { dg-warning "static" } */ } extern inline int func2 (void) { return j++; } inline int func3 (void) { return i++; }
Go to most recent revision | Compare with Previous | Blame | View Log