mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-26 18:26:51 -04:00
10edef110e
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312227 91177308-0d34-0410-b5e6-96231b3b80d8
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;
|
|
}
|