]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr51039.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr51039.c
CommitLineData
03cb5f39
RG
1/* { dg-do compile } */
2/* { dg-options "-O -finline-small-functions -fno-ipa-pure-const" } */
3
4float baz (void)
5{
6 return 0;
7}
8
9static inline int bar (int (*ibaz) (void))
10{
11 return ibaz ();
12}
13
14void foo (void)
15{
16 bar((int (*)(void))baz);
17}