[memprof] Move YAML traits to MemProf.h (NFC) (#118668)
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / mcdc-const.cpp
blob687baea6b911c78c771a1b05432d2779199a5f6d
1 #include <stdio.h>
10 void test(bool a, bool b, bool c, bool d) {
12 if ((a && 1) || (0 && d) || 0)
13 printf("test1 decision true\n");
16 int main()
18 test(true,false,true,false);
19 test(true,false,true,true);
20 test(true,true,false,false);
21 test(false,true,true,false);
23 test(true,false,false,false);
25 return 0;