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
gcc/
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr42918.c
blob
8a3eef5eeecba9de4633a65361ef28cf2d2d564e
1
/* PR debug/42918 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fcompare-debug -ftracer" } */
4
5
extern
int
fi
(
void
);
6
extern
void
fv
(
void
);
7
8
int
9
f
(
int
i
,
int
j
)
10
{
11
if
(!
j
)
12
{
13
fv
();
14
goto
lab
;
15
}
16
i
=
fi
();
17
if
(
i
==
j
)
18
fv
();
19
lab
:
20
return
i
;
21
}