repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[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
blob
08c5f33609bbffa191374042386cd77f643dadd0
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
}