MCELF: Fix a thinko of mine.

llvm-svn: 112203
This commit is contained in:
Benjamin Kramer 2010-08-26 18:12:04 +00:00
parent a967c42a3d
commit 2c45f431fa
1 changed files with 3 additions and 1 deletions

View File

@ -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