llvm-project/clang/test/CoverageMapping/Inputs/code.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
133 B
C
Raw Normal View History

// Some code for the middle of a program
x = x;
if (x == 0) {
x = 1;
} else {
x = 2;
}
if (true) {
x = x;
} else {
x = x;
}