[lld] r267245 - Fix link failure.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 22 15:59:23 PDT 2016
Author: ruiu
Date: Fri Apr 22 17:59:22 2016
New Revision: 267245
URL: http://llvm.org/viewvc/llvm-project?rev=267245&view=rev
Log:
Fix link failure.
Modified:
lld/trunk/ELF/InputSection.cpp
Modified: lld/trunk/ELF/InputSection.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputSection.cpp?rev=267245&r1=267244&r2=267245&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.cpp (original)
+++ lld/trunk/ELF/InputSection.cpp Fri Apr 22 17:59:22 2016
@@ -505,6 +505,11 @@ template class elf::InputSection<ELF32BE
template class elf::InputSection<ELF64LE>;
template class elf::InputSection<ELF64BE>;
+template class elf::SplitInputSection<ELF32LE>;
+template class elf::SplitInputSection<ELF32BE>;
+template class elf::SplitInputSection<ELF64LE>;
+template class elf::SplitInputSection<ELF64BE>;
+
template class elf::EHInputSection<ELF32LE>;
template class elf::EHInputSection<ELF32BE>;
template class elf::EHInputSection<ELF64LE>;
More information about the llvm-commits
mailing list