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
add functions for manipulating the domain of a pet_context
[pet.git]
/
tests
/
inc3.c
blob
010afe6f46d2ae58aa072ef74f24b7fdf46737f5
1
void
foo
(
int
N
)
2
{
3
int
i
;
4
int
a
[
N
];
5
6
#pragma scop
7
for
(
i
=
0
;
i
<
N
;
i
=
i
+
1
)
8
a
[
i
] =
i
;
9
#pragma endscop
10
}