1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-27 10:23:41 +03:00
mold/input_files.cc
2020-10-20 15:04:18 +09:00

16 lines
240 B
C++

#include "catld.h"
using namespace llvm;
class ObjectFile {
public:
ObjectFile(MemoryBufferRef m);
void register_defined_symbols();
void register_undefined_symbols();
std::vector<Symbol *> symbols;
bool is_alive = false;
};