mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 06:25:18 +00:00
Fix handling of ELF::R_MIPS_32 on Mips64.
Thanks to Aboud, Amjad for reporting the regression and providing the testcase. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241440 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -100,9 +100,9 @@ private:
|
||||
case Triple::mips64:
|
||||
switch (RelocType) {
|
||||
case llvm::ELF::R_MIPS_32:
|
||||
return visitELF_MIPS_32(R, Value);
|
||||
return visitELF_MIPS64_32(R, Value);
|
||||
case llvm::ELF::R_MIPS_64:
|
||||
return visitELF_MIPS_64(R, Value);
|
||||
return visitELF_MIPS64_64(R, Value);
|
||||
default:
|
||||
HasError = true;
|
||||
return RelocToApply();
|
||||
@@ -313,11 +313,18 @@ private:
|
||||
|
||||
/// MIPS ELF
|
||||
RelocToApply visitELF_MIPS_32(RelocationRef R, uint64_t Value) {
|
||||
uint32_t Res = (Value)&0xFFFFFFFF;
|
||||
uint32_t Res = Value & 0xFFFFFFFF;
|
||||
return RelocToApply(Res, 4);
|
||||
}
|
||||
|
||||
RelocToApply visitELF_MIPS_64(RelocationRef R, uint64_t Value) {
|
||||
/// MIPS64 ELF
|
||||
RelocToApply visitELF_MIPS64_32(RelocationRef R, uint64_t Value) {
|
||||
int64_t Addend = getELFAddend(R);
|
||||
uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
|
||||
return RelocToApply(Res, 4);
|
||||
}
|
||||
|
||||
RelocToApply visitELF_MIPS64_64(RelocationRef R, uint64_t Value) {
|
||||
int64_t Addend = getELFAddend(R);
|
||||
uint64_t Res = (Value + Addend);
|
||||
return RelocToApply(Res, 8);
|
||||
|
Reference in New Issue
Block a user