Index: lld/trunk/ELF/InputFiles.cpp =================================================================== --- lld/trunk/ELF/InputFiles.cpp +++ lld/trunk/ELF/InputFiles.cpp @@ -143,7 +143,7 @@ if (Flags & SHF_WRITE) error("Writable SHF_MERGE sections are not supported"); uintX_t EntSize = Sec.sh_entsize; - if (Sec.sh_size % EntSize) + if (!EntSize || Sec.sh_size % EntSize) error("SHF_MERGE section size must be a multiple of sh_entsize"); // Don't try to merge if the aligment is larger than the sh_entsize. Index: lld/trunk/test/elf2/invalid-elf.test =================================================================== --- lld/trunk/test/elf2/invalid-elf.test +++ lld/trunk/test/elf2/invalid-elf.test @@ -23,4 +23,8 @@ # RUN: not ld.lld2 %p/Inputs/invalid-shstrndx.so -o %t2 2>&1 | \ # RUN: FileCheck --check-prefix=INVALID-SECTION-INDEX %s +# RUN: not ld.lld2 %p/Inputs/invalid-shentsize-zero.elf -o %t2 2>&1 | \ +# RUN: FileCheck --check-prefix=INVALID-SHENTSIZE-ZERO %s +# INVALID-SHENTSIZE-ZERO: SHF_MERGE section size must be a multiple of sh_entsize + .long foo