mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
RelocVisitor: Add another PPC64 relocation that occurs in dwarf output.
Should bring the ppc64 buildbot back to life. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184633 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
19ead5a9f1
commit
5c368899b3
@ -81,6 +81,8 @@ public:
|
||||
switch (RelocType) {
|
||||
case llvm::ELF::R_PPC64_ADDR32:
|
||||
return visitELF_PPC64_ADDR32(R, Value);
|
||||
case llvm::ELF::R_PPC64_ADDR64:
|
||||
return visitELF_PPC64_ADDR64(R, Value);
|
||||
default:
|
||||
HasError = true;
|
||||
return RelocToApply();
|
||||
@ -217,6 +219,10 @@ private:
|
||||
uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
|
||||
return RelocToApply(Res, 4);
|
||||
}
|
||||
RelocToApply visitELF_PPC64_ADDR64(RelocationRef R, uint64_t Value) {
|
||||
int64_t Addend = getAddend64BE(R);
|
||||
return RelocToApply(Value + Addend, 8);
|
||||
}
|
||||
|
||||
/// PPC32 ELF
|
||||
RelocToApply visitELF_PPC_ADDR32(RelocationRef R, uint64_t Value) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user