diff options
Diffstat (limited to 'test/CoverageMapping/Inputs/header1.h')
-rw-r--r-- | test/CoverageMapping/Inputs/header1.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/CoverageMapping/Inputs/header1.h b/test/CoverageMapping/Inputs/header1.h new file mode 100644 index 0000000..d01e813 --- /dev/null +++ b/test/CoverageMapping/Inputs/header1.h @@ -0,0 +1,31 @@ +#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 |