[elf2] Add STB_GNU_UNIQUE support.

llvm-svn: 249193
This commit is contained in:
Michael J. Spencer 2015-10-02 21:57:52 +00:00
parent 2d6c0e79f7
commit ed3476b79f
2 changed files with 25 additions and 0 deletions

View File

@ -181,6 +181,7 @@ SymbolBody *elf2::ObjectFile<ELFT>::createSymbolBody(StringRef StringTable,
error("unexpected binding");
case STB_GLOBAL:
case STB_WEAK:
case STB_GNU_UNIQUE:
return new (Alloc) DefinedRegular<ELFT>(Name, *Sym, *Sections[SecIndex]);
}
}

View File

@ -0,0 +1,24 @@
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t
// RUN: lld -flavor gnu2 %t -shared -o %tout.so
// RUN: llvm-readobj -t -dyn-symbols %tout.so | FileCheck %s
// REQUIRES: x86
// Check that STB_GNU_UNIQUE is treated as a global and ends up in the dynamic
// symbol table as STB_GNU_UNIQUE.
.global _start
.text
_start:
.data
.type symb, @gnu_unique_object
symb:
# CHECK: Name: symb@
# CHECK-NEXT: Value:
# CHECK-NEXT: Size: 0
# CHECK-NEXT: Binding: Unique
# CHECK-NEXT: Type: Object
# CHECK-NEXT: Other: 0
# CHECK-NEXT: Section: .data
# CHECK-NEXT: }