mirror of
https://github.com/rui314/mold.git
synced 2024-12-27 10:23:41 +03:00
16 lines
240 B
C++
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;
|
|
};
|
|
|