Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr27087.c
blob: 3add13bcbeb36d7e8d761ccb44a41c1ff8891ba3 [
file
] [
log
] [
blame
]
extern
int
ptbl
[
4
];
extern
int
ctbl
[
4
];
void
doViews
(
void
)
{
int
*
c
=
ctbl
,
*
p
=
ptbl
;
while
(
1
)
{
p
++;
c
++;
if
(*
p
)
{
if
(
c
==
p
)
{
if
(*
c
)
return
;
}
else
return
;
}
}
g
();
}