1#include <clean-one.h>
2
3int 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

source code of clang/tools/scan-build-py/tests/functional/src/clean-one.c