mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
Adding multiple object support to MCJIT EH frame handling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192504 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -51,8 +51,8 @@ public:
|
||||
ClientMM->notifyObjectLoaded(EE, Obj);
|
||||
}
|
||||
|
||||
virtual void registerEHFrames(StringRef SectionData) {
|
||||
ClientMM->registerEHFrames(SectionData);
|
||||
virtual void registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) {
|
||||
ClientMM->registerEHFrames(Addr, LoadAddr, Size);
|
||||
}
|
||||
|
||||
virtual bool finalizeMemory(std::string *ErrMsg = 0) {
|
||||
|
Reference in New Issue
Block a user