xref: /netbsd-src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/instrprof-shared-lib.c (revision ef84fd3bd8895f4e6be1e38baf19e6dc3255bc64)
1 int g1 = 0;
2 int g2 = 1;
3 
foo(int n)4 void foo(int n) {
5   if (n % 5 == 0)
6     g1++;
7   else
8     g2++;
9 }
10