forked from OSchip/llvm-project
Make the list accept comma separated names
llvm-svn: 6295
This commit is contained in:
parent
929f27a3e6
commit
224ae025ef
|
@ -27,7 +27,8 @@ namespace {
|
|||
// APIList - A list of symbols that should not be marked internal.
|
||||
cl::list<std::string>
|
||||
APIList("internalize-public-api-list", cl::value_desc("list"),
|
||||
cl::desc("A list of symbol names to preserve"));
|
||||
cl::desc("A list of symbol names to preserve"),
|
||||
cl::CommaSeparated);
|
||||
|
||||
class InternalizePass : public Pass {
|
||||
std::set<std::string> ExternalNames;
|
||||
|
|
Loading…
Reference in New Issue