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
pet 0.11.8
[pet.git]
/
tests
/
call5.c
blob
ea91cc1d35b27ebc688a8ad225278cbd2441cbdd
1
void
foo
(
int
pos
,
int
C
[
const static
pos
+
4
])
2
{
3
for
(
int
i
=
0
;
i
<
4
; ++
i
)
4
C
[
pos
+
i
] +=
i
;
5
}
6
7
void
bar
(
int
n
,
int
A
[
const static
n
])
8
{
9
#pragma scop
10
__pencil_assume
(
n
>=
4
);
11
foo
(
0
,
A
);
12
#pragma endscop
13
}