Fix type in the changelog entry,
[official-gcc.git] / gcc / testsuite / gcc.dg / pr51039.c
blob863a6ff164579519162030482992b41875702448
1 /* { dg-do compile } */
2 /* { dg-options "-O -finline-small-functions -fno-ipa-pure-const" } */
4 float baz (void)
6 return 0;
9 static inline int bar (int (*ibaz) (void))
11 return ibaz ();
14 void foo (void)
16 bar((int (*)(void))baz);