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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ipa
/
pr57294.c
blob
0871f3f41832dea054fdebb2f48fda82c138d0ac
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
void
baz
(
void
);
5
int
func
();
6
7
static void
8
bar
(
int
a
,
int
foo
(
void
))
9
{
10
baz
();
11
foo
();
12
}
13
14
void
15
baz
(
void
)
16
{
17
bar
(
0
,
func
);
18
}