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
export pet_expr_access_get_may_access
[pet.git]
/
tests
/
while_overflow.c
blob
4b0f8405ee42e21e54a1a2d32f79d3583263b953
1
int
t
(
void
);
2
int
f
(
void
);
3
int
g
(
int
);
4
5
void
foo
(
int
N
)
6
{
7
int
s
;
8
int
v
;
9
10
#pragma scop
11
s
=
0
;
12
while
(
t
()) {
13
for
(
int
i
=
0
;
i
<
2
*
N
; ++
i
)
14
s
=
s
+
1
;
15
}
16
#pragma endscop
17
}