Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67109.c
blob: 46df1bfa54f3a62625a79f7834a88ebbf58b0ace [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-additional-options "-Wno-aggressive-loop-optimizations" } */
unsigned
int
a
;
int
b
[
1
],
c
,
d
;
void
fn1
()
{
for
(;
d
;)
{
a
=
c
=
0
;
for
(;
c
<
5
;
c
++)
{
b
[
a
]
^=
1
;
a
--;
}
}
}