Index: ELF/InputSection.cpp =================================================================== --- ELF/InputSection.cpp +++ ELF/InputSection.cpp @@ -35,6 +35,9 @@ // Returns a string to construct an error message. template std::string lld::toString(const InputSectionBase *Sec) { + // File can absent if section is synthetic. + if (!Sec->getFile()) + return ("'" + Sec->Name + "'").str(); return (Sec->getFile()->getName() + ":(" + Sec->Name + ")").str(); } Index: test/ELF/incompatible-section-types2.s =================================================================== --- test/ELF/incompatible-section-types2.s +++ test/ELF/incompatible-section-types2.s @@ -0,0 +1,7 @@ +// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o +// RUN: not ld.lld %t.o -o %t 2>&1 | FileCheck %s + +// CHECK: error: Section has different type from others with the same name '.shstrtab' + +.section .shstrtab,"" +.short 20