forked from OSchip/llvm-project
Rename Set variable to be plural
Thanks Sean Silva for catching this. From: Mehdi Amini <mehdi.amini@apple.com> llvm-svn: 254584
This commit is contained in:
parent
c8c551701e
commit
7d11004c03
|
@ -198,10 +198,10 @@ static bool importFunctions(const char *argv0, LLVMContext &Context,
|
|||
}
|
||||
|
||||
// Link in the specified function.
|
||||
DenseSet<const GlobalValue *> FunctionToImport;
|
||||
FunctionToImport.insert(F);
|
||||
DenseSet<const GlobalValue *> FunctionsToImport;
|
||||
FunctionsToImport.insert(F);
|
||||
if (L.linkInModule(*M, Linker::Flags::None, Index.get(),
|
||||
&FunctionToImport))
|
||||
&FunctionsToImport))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue