Index: ELF/InputFiles.h =================================================================== --- ELF/InputFiles.h +++ ELF/InputFiles.h @@ -36,6 +36,7 @@ // The root class of input files. class InputFile { public: + virtual ~InputFile() {} enum Kind { ObjectKind, SharedKind, ArchiveKind, BitcodeKind }; Kind kind() const { return FileKind; } @@ -111,6 +112,18 @@ ArrayRef getNonLocalSymbols(); explicit ObjectFile(MemoryBufferRef M); + ~ObjectFile() override { + for (InputSectionBase *Section : Sections) { + // EHInputSection and MergeInputSection are allocated + // using SpecificBumpPtrAllocator, which takes ownership. + if (Section == NULL || + EHInputSection::classof(Section) || + MergeInputSection::classof(Section)) { + continue; + } + Section->~InputSectionBase(); + } + } void parse(llvm::DenseSet &ComdatGroups); ArrayRef *> getSections() const { return Sections; } Index: ELF/InputSection.h =================================================================== --- ELF/InputSection.h +++ ELF/InputSection.h @@ -45,6 +45,8 @@ InputSectionBase(ObjectFile *File, const Elf_Shdr *Header, Kind SectionKind); + virtual ~InputSectionBase() {} + OutputSectionBase *OutSec = nullptr; uint32_t Align;