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
/
continue4.c
blob
a2ac69e96d856ca5f5bfc21cb8491463fb278250
1
int
f
(
void
);
2
3
void
foo
()
4
{
5
int
i
,
j
,
a
[
100
];
6
7
#pragma scop
8
for
(
i
=
0
;
i
<
100
; ++
i
) {
9
j
=
f
();
10
if
(
j
==
0
)
11
continue
;
12
a
[
i
] =
i
;
13
j
=
f
();
14
if
(
i
==
57
)
15
continue
;
16
a
[
i
] =
a
[
i
] +
1
;
17
}
18
#pragma endscop
19
}