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
move PetScan::extract_while before its first use
[pet.git]
/
tests
/
break6.c
blob
8c2e2edec5e365b5cb584b7b179d4ee516b8702e
1
int
f
();
2
3
void
foo
()
4
{
5
int
i
,
a
[
100
];
6
7
#pragma scop
8
for
(
i
=
f
();
i
<
100
; ++
i
) {
9
a
[
i
] =
0
;
10
if
(
f
())
11
break
;
12
a
[
i
] =
1
;
13
if
(
f
())
14
continue
;
15
a
[
i
] =
2
;
16
}
17
#pragma endscop
18
}