bolt/deps/llvm-18.1.8/compiler-rt/test/profile/Inputs/instrprof-shared-lib.c
2025-02-14 19:21:04 +01:00

9 lines
90 B
C

int g1 = 0;
int g2 = 1;
void foo(int n) {
if (n % 5 == 0)
g1++;
else
g2++;
}