mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
42bd8958bb
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
19 lines
180 B
C++
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;
|
|
}
|