]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/winline-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / winline-1.c
CommitLineData
dc0bfe6a
JH
1/* { dg-do compile } */
2/* { dg-options "-Winline -O2" } */
3
4void q(void);
5inline int t(void)
6{
7 int ret;
8 q();
9 ret = t(); /* We define sane semantics for inline keyword on recursive
10 functions, so do not warn here. */
11 q();
12 return ret;
13}