Add comments.

llvm-svn: 281265
This commit is contained in:
Rui Ueyama 2016-09-12 21:44:29 +00:00
parent 7afc8fa44c
commit 0eb2a1bd7a
2 changed files with 7 additions and 0 deletions

@ -6,6 +6,11 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains a class to create an ELF file in memory. This is
// supposed to be used for "-format binary" option.
//
//===----------------------------------------------------------------------===//
#include "ELFCreator.h"

@ -733,6 +733,8 @@ static std::unique_ptr<InputFile> createELFFile(MemoryBufferRef MB) {
}
template <class ELFT> std::unique_ptr<InputFile> BinaryFile::createELF() {
// Wrap the binary blob with an ELF header and footer
// so that we can link it as a regular ELF file.
ELFCreator<ELFT> ELF(ET_REL, Config->EMachine);
auto DataSec = ELF.addSection(".data");
DataSec.Header->sh_flags = SHF_ALLOC;