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:
Mehdi Amini 2015-12-03 02:40:39 +00:00
parent c8c551701e
commit 7d11004c03
1 changed files with 3 additions and 3 deletions

View File

@ -198,10 +198,10 @@ static bool importFunctions(const char *argv0, LLVMContext &Context,
} }
// Link in the specified function. // Link in the specified function.
DenseSet<const GlobalValue *> FunctionToImport; DenseSet<const GlobalValue *> FunctionsToImport;
FunctionToImport.insert(F); FunctionsToImport.insert(F);
if (L.linkInModule(*M, Linker::Flags::None, Index.get(), if (L.linkInModule(*M, Linker::Flags::None, Index.get(),
&FunctionToImport)) &FunctionsToImport))
return false; return false;
} }
return true; return true;