Set the value of absolute symbols.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122268 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Roman Divacky
2010-12-20 21:14:39 +00:00
parent d7a0852464
commit d149186e15
2 changed files with 23 additions and 1 deletions

View File

@@ -518,6 +518,15 @@ static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
return Data.getCommonAlignment();
const MCSymbol &Symbol = Data.getSymbol();
if (Symbol.isAbsolute() && Symbol.isVariable()) {
if (const MCExpr *Value = Symbol.getVariableValue()) {
int64_t IntValue;
if (Value->EvaluateAsAbsolute(IntValue, Layout))
return (uint64_t)IntValue;
}
}
if (!Symbol.isInSection())
return 0;