repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
container_of: export get_param/offset_from_container_of()
[smatch.git]
/
validation
/
backend
/
loop.c
blob
31054f52f8425cf7e5b716f1490a728dfd832b0f
1
2
extern
int
bar
(
int
);
3
4
extern
int
foo
(
int
);
5
6
int
foo
(
int
x
)
7
{
8
int
y
=
0
;
9
10
while
(
y
<
1000
) {
11
y
+=
bar
(
x
);
12
}
13
14
return
y
;
15
}
16
17
18
/*
19
* check-name: Loops
20
* check-command: ./sparsec -c $file -o tmp.o
21
*/