[lld/ELF] fix typos to cycle bots

This commit is contained in:
Nico Weber
2024-02-13 18:31:32 -05:00
parent 4bc2a4f64f
commit bf3d5dbe2f
4 changed files with 8 additions and 8 deletions

View File

@@ -41,8 +41,8 @@ using namespace llvm::support::endian;
using namespace lld;
using namespace lld::elf;
// This function is explicity instantiated in ARM.cpp, don't do it here to avoid
// warnings with MSVC.
// This function is explicitly instantiated in ARM.cpp, don't do it here to
// avoid warnings with MSVC.
extern template void ObjFile<ELF32LE>::importCmseSymbols();
extern template void ObjFile<ELF32BE>::importCmseSymbols();
extern template void ObjFile<ELF64LE>::importCmseSymbols();
@@ -323,7 +323,7 @@ template <class ELFT> static void doParseFile(InputFile *file) {
// Add symbols in File to the symbol table.
void elf::parseFile(InputFile *file) { invokeELFT(doParseFile, file); }
// This function is explicity instantiated in ARM.cpp. Mark it extern here,
// This function is explicitly instantiated in ARM.cpp. Mark it extern here,
// to avoid warnings when building with MSVC.
extern template void ObjFile<ELF32LE>::importCmseSymbols();
extern template void ObjFile<ELF32BE>::importCmseSymbols();