summaryrefslogtreecommitdiff
path: root/test/tools/llvm-cov/Inputs/test_no_gcda.cpp.gcov
blob: 31353ca0c0eb9cc85e02fd13eb16247b0360e2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
        -:    0:Source:test.cpp
        -:    0:Graph:test.gcno
        -:    0:Data:-
        -:    0:Runs:0
        -:    0:Programs:0
        -:    1:#include "test.h"
        -:    2:#include <cstdlib>
        -:    3:
        -:    4:bool on = false;
        -:    5:int len = 42;
        -:    6:double grid[10][10] = {0};
        -:    7:const char * hello = "world";
        -:    8:const char * world = "hello";
        -:    9:
    #####:   10:void A::B() {}
        -:   11:
    #####:   12:void useless() {}
        -:   13:
        -:   14:double more_useless() {
    #####:   15:  return 0;
        -:   16:}
        -:   17:
        -:   18:int foo() {
    #####:   19:  on = true;
    #####:   20:  return 3;
        -:   21:}
        -:   22:
        -:   23:int bar() {
    #####:   24:  len--;
    #####:   25:  return foo() + 45;
        -:   26:}
        -:   27:
    #####:   28:void assign(int ii, int jj) {
    #####:   29:  grid[ii][jj] = (ii+1) * (jj+1);
    #####:   30:}
        -:   31:
        -:   32:void initialize_grid() {
    #####:   33:  for (int ii = 0; ii < 2; ii++)
    #####:   34:    for (int jj = 0; jj < 2; jj++)
    #####:   35:      assign(ii, jj);
    #####:   36:}
        -:   37:
        -:   38:int main() {
    #####:   39:  initialize_grid();
        -:   40:
    #####:   41:  int a = 2;
    #####:   42:  on = rand() % 2;
    #####:   43:  if (on) {
    #####:   44:    foo();
    #####:   45:    ++a;
    #####:   46:  } else {
    #####:   47:    bar();
    #####:   48:    a += rand();
        -:   49:  }
        -:   50:
    #####:   51:  for (int ii = 0; ii < 10; ++ii) {
    #####:   52:    switch (rand() % 5) {
        -:   53:      case 0:
    #####:   54:        a += rand();
    #####:   55:        break;
        -:   56:      case 1:
        -:   57:      case 2:
    #####:   58:        a += rand() / rand();
    #####:   59:        break;
        -:   60:      case 3:
    #####:   61:        a -= rand();
    #####:   62:        break;
        -:   63:      default:
    #####:   64:        a = -1;
    #####:   65:    }
    #####:   66:  }
        -:   67:
    #####:   68:  A thing;
    #####:   69:  for (uint64_t ii = 0; ii < 4294967296; ++ii)
    #####:   70:    thing.B();
        -:   71:
    #####:   72:  return a + 8 + grid[2][3] + len;
        -:   73:  return more_useless();
        -:   74:}