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
scop.c: scop_collect_accesses: rename "dim" variable to "space"
[pet.git]
/
tests
/
unsigned_break2.c
blob
093584d3a645060c29a9ff2f9d366d74efb52efb
1
int
f
();
2
3
void
foo
()
4
{
5
unsigned char
k
;
6
int
a
;
7
8
#pragma scop
9
for
(
k
=
252
; (
k
%
9
) <=
5
; ++
k
) {
10
if
(
k
!=
1
)
11
a
=
5
;
12
if
(
f
())
13
break
;
14
a
=
k
;
15
}
16
#pragma endscop
17
}