mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-16 07:38:43 +00:00
Minor cleanup. No need to explicitly tell the compiler the template arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b52f1c2950
commit
12945acd4a
@ -154,7 +154,7 @@ Linker::LinkInArchive(const sys::Path &Filename) {
|
|||||||
verbose(" Linking in module: " + aModule->getModuleIdentifier());
|
verbose(" Linking in module: " + aModule->getModuleIdentifier());
|
||||||
|
|
||||||
// Link it in
|
// Link it in
|
||||||
if (this->LinkInModule(aModule))
|
if (LinkInModule(aModule))
|
||||||
return error("Cannot link in module '" +
|
return error("Cannot link in module '" +
|
||||||
aModule->getModuleIdentifier() + "': " + Error);
|
aModule->getModuleIdentifier() + "': " + Error);
|
||||||
}
|
}
|
||||||
@ -168,8 +168,7 @@ Linker::LinkInArchive(const sys::Path &Filename) {
|
|||||||
// NotDefinedByArchive which holds symbols we know the archive doesn't
|
// NotDefinedByArchive which holds symbols we know the archive doesn't
|
||||||
// define. There's no point searching for symbols that we won't find in the
|
// define. There's no point searching for symbols that we won't find in the
|
||||||
// archive so we subtract these sets.
|
// archive so we subtract these sets.
|
||||||
set_subtract<std::set<std::string>,std::set<std::string> >(
|
set_subtract(UndefinedSymbols, NotDefinedByArchive);
|
||||||
UndefinedSymbols,NotDefinedByArchive);
|
|
||||||
|
|
||||||
// If there's no symbols left, no point in continuing to search the
|
// If there's no symbols left, no point in continuing to search the
|
||||||
// archive.
|
// archive.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user