[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / mcdc-general.cpp
blob030ad7e4c17d409fcc038ff79e32a5ab52034896
1 #include <stdio.h>
10 void test(bool a, bool b, bool c, bool d) {
12 if ((a && b) || (c && d))
13 printf("test1 decision true\n");
15 if (b && c) if (a && d)
16 printf("test2 decision true\n");
18 if ((c && d) &&
19 (a && b))
20 printf("test3 decision true\n");
23 int main()
25 test(false,false,false,false);
26 test(true,false,true,false);
27 test(true,false,true,true);
28 test(true,true,false,false);
30 test(true,false,false,false);
31 test(true,true,true,true);
32 test(false,true,true,false);
34 (void)0;
35 return 0;