Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr87211.c
blob: 386d2a481c3e14dd261c7b41438a8b5082aa2996 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
a
,
b
;
int
i
(
int
*);
int
*
c
(
int
*
d
,
int
*
e
)
{
for
(;
b
;)
d
=
e
;
return
d
;
}
void
f
()
{
for
(;;)
{
int
*
g
[
1
];
int
h
=
0
;
for
(;
h
<
3
;
h
++)
g
[
0
]
=
&
a
;
&
a
==
g
[
0
]
||
i
(
c
((
int
*)
g
,
g
[
0
]));
}
}