bolt/deps/llvm-18.1.8/compiler-rt/test/profile/Inputs/instrprof-gcov-multiple-bbs-single-line.c
2025-02-14 19:21:04 +01:00

20 lines
149 B
C

int main(void)
{
int var;
int a = 1;
if (a) {
var++;
}
if (a) {}
int b = 0;
if (b) {
var++;
}
if (b) {}
return 0;
}