repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
allow loop increments of the form i = i + cst
[pet.git]
/
tests
/
dec3.c
blob
203ec743a53b11ef7e507ff4e96abc8a8f186283
1
void
foo
(
int
N
)
2
{
3
int
i
;
4
int
a
[
N
];
5
6
#pragma scop
7
for
(
i
=
N
-
1
;
i
>=
0
;
i
+= -
1
)
8
a
[
i
] =
i
;
9
#pragma endscop
10
}