mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
[RuntimeDyld] Propagate another dropped error in RuntimeDyldELF.
This should fix the PPC64 bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3fdd252bbd
commit
def5c175e7
@ -1480,7 +1480,8 @@ RuntimeDyldELF::processRelocationRef(
|
||||
// In the ELFv1 ABI, a function call may point to the .opd entry,
|
||||
// so the final symbol value is calculated based on the relocation
|
||||
// values in the .opd section.
|
||||
findOPDEntrySection(Obj, ObjSectionToID, Value);
|
||||
if (auto Err = findOPDEntrySection(Obj, ObjSectionToID, Value))
|
||||
return std::move(Err);
|
||||
} else {
|
||||
// In the ELFv2 ABI, a function symbol may provide a local entry
|
||||
// point, which must be used for direct calls.
|
||||
|
Loading…
Reference in New Issue
Block a user