1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-20 01:18:53 +03:00
mold/input_sections.cc
2020-10-20 15:04:18 +09:00

9 lines
225 B
C++

#include "chibild.h"
InputSection::InputSection(ObjectFile *file, const ELF64LE::Shdr *hdr, StringRef name)
: file(file), hdr(hdr), name(name) {}
uint64_t InputSection::get_on_file_size() const {
return hdr->sh_size;
}