repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/37276
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr51012-2.c
blob
fcc8cea7b3a04b9f7f02e04cef1ecbcf8a21b93c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-early-inlining" } */
3
4
float
baz
(
void
)
5
{
6
return
0
;
7
}
8
9
static
inline
int
bar
(
int
(*
ibaz
) (
void
))
10
{
11
return
ibaz
();
12
}
13
14
void
foo
(
void
)
15
{
16
bar
((
int
(*)(
void
))
baz
);
17
}