mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
[MCJIT] [AArch64] Make sure to propegate ARM64_RELOC_ADDEND values into the
RelocationEntry. No test case yet, as this primarily hits GOT entries, which RuntimeDyldChecker can't examine yet. I'm actively working on features that will enable us to test this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213408 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
394e6d2b9e
commit
7b1a0fd7ab
@ -59,8 +59,10 @@ public:
|
||||
RelocationValueRef Value(
|
||||
getRelocationValueRef(ObjImg, RelI, RE, ObjSectionToID, Symbols));
|
||||
|
||||
if (HasExplicitAddend)
|
||||
if (HasExplicitAddend) {
|
||||
RE.Addend = ExplicitAddend;
|
||||
Value.Addend = ExplicitAddend;
|
||||
}
|
||||
|
||||
bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
|
||||
if (!IsExtern && RE.IsPCRel)
|
||||
|
Loading…
x
Reference in New Issue
Block a user