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-shared-lib.c
Text
·
90 B
·
d22b0a5
Raw
10 lines · c
1
int g1 = 0;
2
int g2 = 1;
3
4
void foo(int n) {
5
if (n % 5 == 0)
6
g1++;
7
else
8
g2++;
9
}
10