1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/tools/llvm-cov/Inputs/name_whitelist.cpp
Sean Eveson 42bd8958bb [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;
}