Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58326-1.c
blob: 3b46eed9cacef3477da9a554b08c03eea5992c5a [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
a
,
*
d
;
long
b
;
short
c
;
void
foo
()
{
int
e
;
lbl
:
for
(
c
=
0
;
c
<
2
;
c
++)
{
if
(
1
>>
b
)
break
;
e
=
*
d
;
for
(;
a
;
a
++)
{
*
d
=
e
;
if
(
b
)
goto
lbl
;
}
}
}