Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr97695.c
blob: 36f48b4140cd99148eccb93be95094195ce141a3 [
file
] [
log
] [
blame
]
int
*
a
,
b
,
**
c
=
&
a
,
d
,
e
;
int
f
(
int
g
,
int
h
)
{
return
!
h
||
(
g
&&
h
==
1
)
?
0
:
g
/
h
;
}
static
void
*
i
(
int
g
)
{
while
(
e
<
2
)
if
(!
f
(
g
,
9
))
{
while
(
b
)
;
return
0
;
}
return
0
;
}
void
j
()
{
i
(
1
);
*
c
=
i
(
d
);
}
int
main
()
{
j
();
return
0
;
}