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
initial version of pet
[pet.git]
/
tests
/
arg.c
blob
baf5f00ff966499701749feacda97ca3ae221ea0
1
void
f
(
const int
*
a
,
int
*
b
);
2
3
int
foo
()
4
{
5
int
b
[
11
];
6
int
a
;
7
int
i
;
8
9
#pragma scop
10
for
(
i
=
0
;
i
<
10
;
i
++) {
11
f
(&
a
, &
a
);
12
f
(&
b
[
i
], &
b
[
i
+
1
]);
13
}
14
#pragma endscop
15
16
return
a
;
17
}