summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-cov/Inputs/prevent_false_instantiations.cpp
blob: 2a84f1dd58e4b7f5d82297bf3c9284bd6a509f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "prevent_false_instantiations.h"

void func1() {
  DO_SOMETHING();
}

void func2() {
  DO_SOMETHING();
}

int main() {
  func1();
  func2();
  return 0;
}
OpenPOWER on IntegriCloud