mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
Rename Set variable to be plural
Thanks Sean Silva for catching this. From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254584 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
690d7b2a89
commit
2d8142d991
@ -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
Block a user