OpenCores
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 826

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);
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.