mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 22:02:12 +00:00
Add comments.
llvm-svn: 281265
This commit is contained in:
parent
7afc8fa44c
commit
0eb2a1bd7a
lld/ELF
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user