xref: /openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/src/clean-two.c (revision e5dd70708596ae51455a0ffa086a00c5b29f8583)
1*e5dd7070Spatrick #include <clean-one.h>
2*e5dd7070Spatrick 
3*e5dd7070Spatrick #include <stdlib.h>
4*e5dd7070Spatrick 
another_method()5*e5dd7070Spatrick unsigned int another_method()
6*e5dd7070Spatrick {
7*e5dd7070Spatrick     unsigned int const size = do_nothing_loop();
8*e5dd7070Spatrick     unsigned int const square = size * size;
9*e5dd7070Spatrick 
10*e5dd7070Spatrick     return square;
11*e5dd7070Spatrick }
12