Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr69209.c
blob: fd8046f217d18a2b1d8772f0b359a7a1e1ed46e2 [
file
] [
log
] [
blame
]
/* PR tree-optimization/69209 */
int
a
,
c
,
*
d
,
e
;
void
foo
(
void
)
__attribute__
((
__noreturn__
));
int
bar
(
void
)
{
int
f
;
if
(
a
)
{
if
(
e
)
foo
();
foo
();
}
if
(
d
!=
&
f
)
foo
();
if
(!
c
)
foo
();
return
f
;
}
void
baz
()
{
bar
();
}