Files
clang-p2996/llvm/test/tools/llvm-cov/Inputs/name_whitelist.cpp
Sean Eveson e15300ecf5 [llvm-cov] Read in function names for filtering from a text file.
Summary: Add a -name-whitelist option, which behaves in the same way as -name, but it reads in multiple function names from the given input file(s).

Reviewers: vsk

Reviewed By: vsk

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D37111

llvm-svn: 312227
2017-08-31 09:11:31 +00:00

19 lines
180 B
C++

int func1() {
return 1;
}
int func2() {
return 1;
}
int func3() {
return 1;
}
int func4() {
return 1;
}
int func5() {
return 1;
}
int func6() {
return 1;
}