mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Defined weak symbols should have non-zero value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117585 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f36e7389f
commit
1973d43792
@ -438,7 +438,6 @@ static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout) {
|
||||
if (!Symbol.isInSection())
|
||||
return 0;
|
||||
|
||||
if (!Data.isCommon() && !(Data.getFlags() & ELF_STB_Weak))
|
||||
if (MCFragment *FF = Data.getFragment())
|
||||
return Layout.getSymbolAddress(&Data) -
|
||||
Layout.getSectionAddress(FF->getParent());
|
||||
|
@ -5,7 +5,7 @@
|
||||
.weak foo
|
||||
.long foo
|
||||
|
||||
// And that bar is after all local symbols
|
||||
// And that bar is after all local symbols and has non zero value.
|
||||
.weak bar
|
||||
bar:
|
||||
|
||||
@ -15,7 +15,7 @@ bar:
|
||||
//CHECK-NEXT: ('st_type', 0x00000000)
|
||||
//CHECK-NEXT: ('st_other', 0x00000000)
|
||||
//CHECK-NEXT: ('st_shndx', 0x00000001)
|
||||
//CHECK-NEXT: ('st_value', 0x00000000)
|
||||
//CHECK-NEXT: ('st_value', 0x00000004)
|
||||
//CHECK-NEXT: ('st_size', 0x00000000)
|
||||
//CHECK-NEXT: ),
|
||||
//CHECK-NEXT: # Symbol 0x00000005
|
||||
|
Loading…
Reference in New Issue
Block a user