1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-28 02:44:48 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-09 20:52:56 +09:00
parent 94b582eb91
commit 3c789bae07

4
mold.h
View File

@ -245,8 +245,8 @@ public:
InputSection(ObjectFile *file, const ELF64LE::Shdr &shdr, StringRef name)
: InputChunk(REGULAR, file, shdr, name) {}
void copy_to(u8 *buf);
void scan_relocations();
void copy_to(u8 *buf) override;
void scan_relocations() override;
ArrayRef<ELF64LE::Rela> rels;
std::vector<StringPieceRef> rel_pieces;