aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-objcopy/COFF/Inputs/strip-symbols.yaml
blob: 1d652691198c4ecf8a32c10466ee17b802dc1cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--- !COFF
header:          
  Machine:         IMAGE_FILE_MACHINE_AMD64
  Characteristics: [  ]
sections:        
  - Name:            .text
    Characteristics: [  ]
    Alignment:       4
    SectionData:     488B0500000000488B0500000000488B0500000000
    Relocations:     
      - VirtualAddress:  3
        SymbolTableIndex: 0
        Type:            IMAGE_REL_AMD64_REL32
      - VirtualAddress:  10
        SymbolTableIndex: 1
        Type:            IMAGE_REL_AMD64_REL32
      - VirtualAddress:  17
        SymbolName:      foo
        Type:            IMAGE_REL_AMD64_REL32
  - Name:            .rdata
    Characteristics: [  ]
    Alignment:       1
    SectionData:     '00'
  - Name:            .rdata
    Characteristics: [  ]
    Alignment:       1
    SectionData:     '01'
symbols:         
  - Name:            .rdata
    Value:           0
    SectionNumber:   2
    SimpleType:      IMAGE_SYM_TYPE_NULL
    ComplexType:     IMAGE_SYM_DTYPE_NULL
    StorageClass:    IMAGE_SYM_CLASS_STATIC
  - Name:            .rdata
    Value:           0
    SectionNumber:   3
    SimpleType:      IMAGE_SYM_TYPE_NULL
    ComplexType:     IMAGE_SYM_DTYPE_NULL
    StorageClass:    IMAGE_SYM_CLASS_STATIC
  - Name:            mainfunc
    Value:           0
    SectionNumber:   1
    SimpleType:      IMAGE_SYM_TYPE_NULL
    ComplexType:     IMAGE_SYM_DTYPE_NULL
    StorageClass:    IMAGE_SYM_CLASS_EXTERNAL
  - Name:            foo
    Value:           0
    SectionNumber:   3
    SimpleType:      IMAGE_SYM_TYPE_NULL
    ComplexType:     IMAGE_SYM_DTYPE_NULL
    StorageClass:    IMAGE_SYM_CLASS_EXTERNAL
...