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
scop.c: scop_collect_accesses: rename "dim" variable to "space"
[pet.git]
/
tests
/
while_affine.c
blob
cfc177be7bbc3788c5e07398bfea81ca918b4527
1
void
foo
(
int
N
)
2
{
3
int
i
,
j
,
a
[
N
],
b
[
N
];
4
5
#pragma scop
6
for
(
i
=
0
;
i
<
100
; ++
i
)
7
while
(
i
>
98
) {
8
for
(
j
=
0
;
j
<
N
; ++
j
)
9
a
[
j
] =
0
;
10
for
(
j
=
0
;
j
<
N
; ++
j
)
11
b
[
j
] =
a
[
j
];
12
}
13
#pragma endscop
14
}