diff options
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
| -rw-r--r-- | lld/ELF/InputFiles.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index 6faef18b0dc..e5ec606b0b1 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -417,13 +417,14 @@ elf::ObjectFile<ELFT>::getSection(const Elf_Sym &Sym) const { fatal(getFilename(this) + ": invalid section index: " + Twine(Index)); InputSectionBase<ELFT> *S = Sections[Index]; - // We found that GNU assembler 2.17.50 [FreeBSD] 2007-07-03 - // could generate broken objects. STT_SECTION symbols can be + // We found that GNU assembler 2.17.50 [FreeBSD] 2007-07-03 could + // generate broken objects. STT_SECTION/STT_NOTYPE symbols can be // associated with SHT_REL[A]/SHT_SYMTAB/SHT_STRTAB sections. - // In this case it is fine for section to be null here as we - // do not allocate sections of these types. + // In this case it is fine for section to be null here as we do not + // allocate sections of these types. if (!S) { - if (Index == 0 || Sym.getType() == STT_SECTION) + if (Index == 0 || Sym.getType() == STT_SECTION || + Sym.getType() == STT_NOTYPE) return nullptr; fatal(getFilename(this) + ": invalid section index: " + Twine(Index)); } |

