diff options
| author | Eugene Leviant <eleviant@accesssoftek.com> | 2016-11-25 16:42:04 +0000 |
|---|---|---|
| committer | Eugene Leviant <eleviant@accesssoftek.com> | 2016-11-25 16:42:04 +0000 |
| commit | f04777527e53d148d972c1198bc034ac4ce8f955 (patch) | |
| tree | 08876d602a4424356a4c87d4687ff6aa263a270b | |
| parent | 1e48829747b3094fa6f71beba61d452c9a9ff052 (diff) | |
| download | bcm5719-llvm-f04777527e53d148d972c1198bc034ac4ce8f955.tar.gz bcm5719-llvm-f04777527e53d148d972c1198bc034ac4ce8f955.zip | |
[ELF] Add explicit template instantiations for toString
llvm-svn: 287938
| -rw-r--r-- | lld/ELF/InputSection.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 998e8c68da3..9dc769ff2e8 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -823,3 +823,8 @@ template class elf::MergeInputSection<ELF32LE>; template class elf::MergeInputSection<ELF32BE>; template class elf::MergeInputSection<ELF64LE>; template class elf::MergeInputSection<ELF64BE>; + +template std::string elf::toString(const InputSectionBase<ELF32LE> *); +template std::string elf::toString(const InputSectionBase<ELF32BE> *); +template std::string elf::toString(const InputSectionBase<ELF64LE> *); +template std::string elf::toString(const InputSectionBase<ELF64BE> *); |

