URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [winline-1.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Winline -O2" } */ void q(void); inline int t(void) { int ret; q(); ret = t(); /* We define sane semantics for inline keyword on recursive functions, so do not warn here. */ q(); return ret; }