Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-debug-info-correlate-bar.h
Text
·
100 B
·
15927f1
Raw
9 lines · c
1
int foo(int);
2
int unused(int);
3
4
inline int bar(int a) {
5
while (a > 100)
6
a /= 2;
7
return a;
8
}
9