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
/
for_while.c
blob
ca401f36d244367e2a18bc6d6cdd92f3d5cd1e90
1
int
f
(
void
);
2
int
P
(
int
,
int
);
3
int
g
(
int
);
4
void
h
(
int
);
5
6
void
foo
(
int
n
)
7
{
8
int
s
;
9
10
#pragma scop
11
for
(
int
x1
=
0
;
x1
<
n
; ++
x1
) {
12
S1
:
s
=
f
();
13
for
(
int
x2
=
0
;
P
(
x1
,
x2
); ++
x2
) {
14
S2
:
s
=
g
(
s
);
15
}
16
R
:
h
(
s
);
17
}
18
#pragma endscop
19
}