summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-cov/Inputs/multiple_objects/use_2.cc
blob: 52965599a3a431490dc5d5e0fb2c5f293a71aa42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#undef DEF
#include "header.h"

static int foo() {
  return 0;
}

int main() {
  f1();

  long *x;
  f2(&x);

  double *y;
  f2(&y);

  f3();

  return foo();
}
OpenPOWER on IntegriCloud