xref: /openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/src/clean-one.c (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
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