Clang Project
clang_source_code
/
tools
/
scan-build-py
/
tests
/
functional
/
src
/
clean-one.c
1
#
include
<clean-one.h>
2
3
int
do_nothing_loop
()
4
{
5
int
i
=
32
;
6
int
idx
=
0
;
7
8
for
(
idx
=
i
;
idx
>
0
; --
idx
)
9
{
10
i
+=
idx
;
11
}
12
return
i
;
13
}
14