[lld] r258767 - Add missing template instantiations.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 25 17:32:01 PST 2016


Author: ruiu
Date: Mon Jan 25 19:32:00 2016
New Revision: 258767

URL: http://llvm.org/viewvc/llvm-project?rev=258767&view=rev
Log:
Add missing template instantiations.

Modified:
    lld/trunk/ELF/OutputSections.cpp

Modified: lld/trunk/ELF/OutputSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/OutputSections.cpp?rev=258767&r1=258766&r2=258767&view=diff
==============================================================================
--- lld/trunk/ELF/OutputSections.cpp (original)
+++ lld/trunk/ELF/OutputSections.cpp Mon Jan 25 19:32:00 2016
@@ -1721,22 +1721,30 @@ template ELFFile<ELF32BE>::uintX_t getSy
 template ELFFile<ELF64LE>::uintX_t getSymVA<ELF64LE>(const SymbolBody &);
 template ELFFile<ELF64BE>::uintX_t getSymVA<ELF64BE>(const SymbolBody &);
 
-template ELFFile<ELF32LE>::uintX_t
-getLocalRelTarget(const ObjectFile<ELF32LE> &,
-                  const ELFFile<ELF32LE>::Elf_Rel &,
-                  ELFFile<ELF32LE>::uintX_t Addend);
-template ELFFile<ELF32BE>::uintX_t
-getLocalRelTarget(const ObjectFile<ELF32BE> &,
-                  const ELFFile<ELF32BE>::Elf_Rel &,
-                  ELFFile<ELF32BE>::uintX_t Addend);
-template ELFFile<ELF64LE>::uintX_t
-getLocalRelTarget(const ObjectFile<ELF64LE> &,
-                  const ELFFile<ELF64LE>::Elf_Rel &,
-                  ELFFile<ELF64LE>::uintX_t Addend);
-template ELFFile<ELF64BE>::uintX_t
-getLocalRelTarget(const ObjectFile<ELF64BE> &,
-                  const ELFFile<ELF64BE>::Elf_Rel &,
-                  ELFFile<ELF64BE>::uintX_t Addend);
+template uint32_t getLocalRelTarget(const ObjectFile<ELF32LE> &,
+                                    const ELFFile<ELF32LE>::Elf_Rel &,
+                                    uint32_t);
+template uint32_t getLocalRelTarget(const ObjectFile<ELF32BE> &,
+                                    const ELFFile<ELF32BE>::Elf_Rel &,
+                                    uint32_t);
+template uint64_t getLocalRelTarget(const ObjectFile<ELF64LE> &,
+                                    const ELFFile<ELF64LE>::Elf_Rel &,
+                                    uint64_t);
+template uint64_t getLocalRelTarget(const ObjectFile<ELF64BE> &,
+                                    const ELFFile<ELF64BE>::Elf_Rel &,
+                                    uint64_t);
+template uint32_t getLocalRelTarget(const ObjectFile<ELF32LE> &,
+                                    const ELFFile<ELF32LE>::Elf_Rela &,
+                                    uint32_t);
+template uint32_t getLocalRelTarget(const ObjectFile<ELF32BE> &,
+                                    const ELFFile<ELF32BE>::Elf_Rela &,
+                                    uint32_t);
+template uint64_t getLocalRelTarget(const ObjectFile<ELF64LE> &,
+                                    const ELFFile<ELF64LE>::Elf_Rela &,
+                                    uint64_t);
+template uint64_t getLocalRelTarget(const ObjectFile<ELF64BE> &,
+                                    const ELFFile<ELF64BE>::Elf_Rela &,
+                                    uint64_t);
 
 template bool shouldKeepInSymtab<ELF32LE>(const ObjectFile<ELF32LE> &,
                                           StringRef,




More information about the llvm-commits mailing list