mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
MCELF: Fix a thinko of mine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112203 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3b7bbfd36c
commit
4ba1b3074b
@ -480,7 +480,8 @@ void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm,
|
||||
Value += Layout.getSymbolAddress(&SD) - Layout.getSymbolAddress(Base);
|
||||
Addend = Value;
|
||||
// Compensate for the addend on i386.
|
||||
FixedValue = Is64Bit ? 0 : Value;
|
||||
if (Is64Bit)
|
||||
Value = 0;
|
||||
} else {
|
||||
if (F) {
|
||||
// Index of the section in .symtab against this symbol
|
||||
@ -495,6 +496,7 @@ void ELFObjectWriterImpl::RecordRelocation(const MCAssembler &Asm,
|
||||
return;
|
||||
}
|
||||
}
|
||||
FixedValue = Value;
|
||||
}
|
||||
|
||||
// determine the type of the relocation
|
||||
|
Loading…
Reference in New Issue
Block a user