forked from OSchip/llvm-project
[ELF] Explicit template instantiations for addFile
Summary: All other templated methods have explicit instantiations but this one is missing. Discovered while building with a clang with inliner modifications. Reviewers: espindola Subscribers: emaste, llvm-commits, davidxl Differential Revision: https://reviews.llvm.org/D41847 llvm-svn: 322057
This commit is contained in:
parent
4d1dd6b53a
commit
bfa48a14ab
|
@ -763,6 +763,11 @@ void SymbolTable::scanVersionScript() {
|
|||
Sym->parseSymbolVersion();
|
||||
}
|
||||
|
||||
template void SymbolTable::addFile<ELF32LE>(InputFile *);
|
||||
template void SymbolTable::addFile<ELF32BE>(InputFile *);
|
||||
template void SymbolTable::addFile<ELF64LE>(InputFile *);
|
||||
template void SymbolTable::addFile<ELF64BE>(InputFile *);
|
||||
|
||||
template void SymbolTable::addSymbolWrap<ELF32LE>(StringRef);
|
||||
template void SymbolTable::addSymbolWrap<ELF32BE>(StringRef);
|
||||
template void SymbolTable::addSymbolWrap<ELF64LE>(StringRef);
|
||||
|
|
Loading…
Reference in New Issue