mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
068463b714
Although in reality the symbol table in ELF resides in a section, the standard requires that there be no more than one SHT_SYMTAB. To enforce this constraint, it is cleaner to group all the symbols under a top-level `Symbols` key on the object file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184627 91177308-0d34-0410-b5e6-96231b3b80d8
38 lines
780 B
YAML
38 lines
780 B
YAML
# RUN: yaml2obj -format=elf %s | llvm-readobj -symbols - | FileCheck %s
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .data
|
|
Type: SHT_PROGBITS
|
|
Flags: [ SHF_ALLOC, SHF_WRITE ]
|
|
Content: "DEADBEEF"
|
|
Symbols:
|
|
Local:
|
|
- Name: local_symbol
|
|
Type: STT_OBJECT
|
|
Section: .data
|
|
Global:
|
|
- Name: global_symbol
|
|
Type: STT_OBJECT
|
|
Section: .data
|
|
Weak:
|
|
- Name: weak_symbol
|
|
Type: STT_OBJECT
|
|
Section: .data
|
|
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: (0)
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: local_symbol
|
|
# CHECK: Binding: Local
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: global_symbol
|
|
# CHECK: Binding: Global
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: weak_symbol
|
|
# CHECK: Binding: Weak
|