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
update to removal of SourceManager::createFileID(FileEntry*)
[pet.git]
/
tests
/
call10.c
blob
50101099787c55aa70d10f337a0bc9852e02a9db
1
void
set_odd
(
int
n
,
int
A
[
static
n
])
2
{
3
goto
next
;
4
next
:
5
for
(
int
i
=
1
;
i
<
n
;
i
+=
2
)
6
A
[
i
] =
i
;
7
}
8
9
void
foo
(
int
n
,
int
A
[
static
n
][
n
])
10
{
11
#pragma scop
12
for
(
int
i
=
0
;
i
<
n
; ++
i
)
13
set_odd
(
n
,
A
[
i
]);
14
#pragma endscop
15
}