aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-objcopy/COFF/Inputs/no-symbol-table.yaml
blob: 364db51aebcb7752c7d7c320b651c8c4f0286f69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- !COFF
header:
  Machine:         IMAGE_FILE_MACHINE_AMD64
  Characteristics: []
sections:
  - Name:            .text
    Characteristics: []
# We define a symbol here and override the symbol table pointer in the test to
# get an object with symbols but without a symbol table.
symbols:
  - Name:            .text
    Value:           0
    SectionNumber:   1
    SimpleType:      IMAGE_SYM_TYPE_NULL
    ComplexType:     IMAGE_SYM_DTYPE_NULL
    StorageClass:    IMAGE_SYM_CLASS_STATIC
...