[AMDGPU] Infer amdgpu-no-flat-scratch-init attribute in AMDGPUAttributor (#94647)
[llvm-project.git] / clang / tools / scan-build-py / tests / functional / src / clean-one.c
blob08c5f33609bbffa191374042386cd77f643dadd0
1 #include <clean-one.h>
3 int do_nothing_loop()
5 int i = 32;
6 int idx = 0;
8 for (idx = i; idx > 0; --idx)
10 i += idx;
12 return i;