reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
# RUN: yaml2obj %s -o %t
# RUN: llvm-readobj --symbols %t | FileCheck %s

## Check yaml2obj is able to create the STB_GNU_UNIQUE symbol.

# CHECK:        Name: foo
# CHECK-NEXT:   Value:
# CHECK-NEXT:   Size:
# CHECK-NEXT:   Binding: Unique

--- !ELF
FileHeader:
  Class:     ELFCLASS64
  Data:      ELFDATA2LSB
  OSABI:     ELFOSABI_GNU
  Type:      ET_REL
  Machine:   EM_X86_64
Symbols:
  - Name:    foo
    Type:    STT_OBJECT
    Binding: STB_GNU_UNIQUE