[lld] r270531 - Simplify. NFC.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Mon May 23 21:12:55 PDT 2016
Author: ruiu
Date: Mon May 23 23:12:52 2016
New Revision: 270531
URL: http://llvm.org/viewvc/llvm-project?rev=270531&view=rev
Log:
Simplify. NFC.
Modified:
lld/trunk/ELF/InputFiles.cpp
Modified: lld/trunk/ELF/InputFiles.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputFiles.cpp?rev=270531&r1=270530&r2=270531&view=diff
==============================================================================
--- lld/trunk/ELF/InputFiles.cpp (original)
+++ lld/trunk/ELF/InputFiles.cpp Mon May 23 23:12:52 2016
@@ -755,14 +755,10 @@ template void ArchiveFile::parse<ELF32BE
template void ArchiveFile::parse<ELF64LE>();
template void ArchiveFile::parse<ELF64BE>();
-template void
-BitcodeFile::parse<ELF32LE>(llvm::DenseSet<StringRef> &ComdatGroups);
-template void
-BitcodeFile::parse<ELF32BE>(llvm::DenseSet<StringRef> &ComdatGroups);
-template void
-BitcodeFile::parse<ELF64LE>(llvm::DenseSet<StringRef> &ComdatGroups);
-template void
-BitcodeFile::parse<ELF64BE>(llvm::DenseSet<StringRef> &ComdatGroups);
+template void BitcodeFile::parse<ELF32LE>(llvm::DenseSet<StringRef> &);
+template void BitcodeFile::parse<ELF32BE>(llvm::DenseSet<StringRef> &);
+template void BitcodeFile::parse<ELF64LE>(llvm::DenseSet<StringRef> &);
+template void BitcodeFile::parse<ELF64BE>(llvm::DenseSet<StringRef> &);
template void LazyObjectFile::parse<ELF32LE>();
template void LazyObjectFile::parse<ELF32BE>();
More information about the llvm-commits
mailing list