diff options
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
-rw-r--r-- | lld/ELF/InputFiles.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index 3a1196761cf..38d9b7ab4c8 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -81,10 +81,10 @@ SymbolBody *elf2::ObjectFile<ELFT>::createSymbolBody(StringRef StringTable, case STB_GLOBAL: if (Sym->isUndefined()) return new (Alloc) Undefined(Name); - return new (Alloc) DefinedRegular<ELFT>(Name); + return new (Alloc) DefinedRegular(Name); case STB_WEAK: // FIXME: add support for weak undefined - return new (Alloc) DefinedWeak<ELFT>(Name); + return new (Alloc) DefinedWeak(Name); } } |