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 libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ipa
/
pr63909.c
blob
8538e214be3661797c28a873e55a4c2890597d9f
1
/* { dg-options "-O2 -fno-guess-branch-probability" } */
2
3
int
z
;
4
5
__attribute__
((
noinline
))
6
void
g
()
7
{
8
if
(++
z
)
9
__builtin_exit
(
0
);
10
g
();
11
}
12
13
__attribute__
((
noinline
))
14
void
f
()
15
{
16
if
(++
z
)
17
__builtin_exit
(
0
);
18
f
();
19
}
20
21
int
main
()
22
{
23
f
();
24
g
();
25
26
return
0
;
27
}