repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr67109.c
blob
46df1bfa54f3a62625a79f7834a88ebbf58b0ace
1
/* { dg-do compile } */
2
/* { dg-additional-options "-Wno-aggressive-loop-optimizations" } */
3
4
unsigned int
a
;
5
int
b
[
1
],
c
,
d
;
6
7
void
8
fn1
()
9
{
10
for
(;
d
;)
11
{
12
a
=
c
=
0
;
13
for
(;
c
<
5
;
c
++)
14
{
15
b
[
a
] ^=
1
;
16
a
--;
17
}
18
}
19
}