Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr51039.c
blob: 863a6ff164579519162030482992b41875702448 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O -finline-small-functions -fno-ipa-pure-const" } */
float
baz
(
void
)
{
return
0
;
}
static
inline
int
bar
(
int
(*
ibaz
)
(
void
))
{
return
ibaz
();
}
void
foo
(
void
)
{
bar
((
int
(*)(
void
))
baz
);
}