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
pet 0.04
[pet.git]
/
tests
/
break2.c
blob
7ba828265fa83818c37269294d160185741669b1
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
<
10
)
10
continue
;
11
if
(
i
==
j
)
12
break
;
13
a
[
i
] =
i
+
j
;
14
}
15
#pragma endscop
16
}