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
/
break.c
blob
70cf6e7767f30865ac92b24895160a876df044b8
1
void
foo
()
2
{
3
int
i
,
j
,
a
[
100
];
4
5
#pragma scop
6
for
(
i
=
0
;
i
<
100
; ++
i
)
7
for
(
j
=
0
;
j
<
100
; ++
j
) {
8
a
[
i
] =
0
;
9
if
(
i
==
j
)
10
break
;
11
a
[
i
] =
i
+
j
;
12
}
13
#pragma endscop
14
}