diff options
Diffstat (limited to 'clang/test/CoverageMapping/Inputs')
| -rw-r--r-- | clang/test/CoverageMapping/Inputs/code.h | 11 | ||||
| -rw-r--r-- | clang/test/CoverageMapping/Inputs/header1.h | 31 |
2 files changed, 0 insertions, 42 deletions
diff --git a/clang/test/CoverageMapping/Inputs/code.h b/clang/test/CoverageMapping/Inputs/code.h deleted file mode 100644 index cd3cfb5d3fe..00000000000 --- a/clang/test/CoverageMapping/Inputs/code.h +++ /dev/null @@ -1,11 +0,0 @@ -x = x; -if (x == 0) { - x = 1; -} else { - x = 2; -} -if (true) { - x = x; -} else { - x = x; -} diff --git a/clang/test/CoverageMapping/Inputs/header1.h b/clang/test/CoverageMapping/Inputs/header1.h deleted file mode 100644 index d01e813b40b..00000000000 --- a/clang/test/CoverageMapping/Inputs/header1.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef HEADER1_H -#define HEADER1_H - -inline void func(int i) { - int x = 0; - if (i == 0) { - x = 1; - } else { - x = 2; - } -} -static void static_func(int j) { - int x = 0; - if (j == x) { - x = !j; - } else { - x = 42; - } - j = x * j; -} -static void static_func2(int j) { - int x = 0; - if (j == x) { - x = !j; - } else { - x = 42; - } - j = x * j; -} - -#endif // HEADER1_H |

