Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / tools / llvm-readobj / COFF / arm64ec.yaml
blobbf0d82708c12f0ba20bf430250c3a33d52ac8b4b
1 # RUN: yaml2obj < %s | llvm-readobj - --file-headers | FileCheck %s
2 # Check we can process a simple arm64ec file.
3 # CHECK: Format: COFF-ARM64EC
4 # CHECK: Machine: IMAGE_FILE_MACHINE_ARM64EC (0xA641)
5 --- !COFF
6 header:
7   Machine:         IMAGE_FILE_MACHINE_ARM64EC
8   Characteristics: [  ]
9 sections:
10   - Name:            .text
11     Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ]
12     Alignment:       4
13     SectionData:     ''
14 symbols:
15   - Name:            .text
16     Value:           0
17     SectionNumber:   1
18     SimpleType:      IMAGE_SYM_TYPE_NULL
19     ComplexType:     IMAGE_SYM_DTYPE_NULL
20     StorageClass:    IMAGE_SYM_CLASS_STATIC
21     SectionDefinition:
22       Length:          0
23       NumberOfRelocations: 0
24       NumberOfLinenumbers: 0
25       CheckSum:        0
26       Number:          1
27 ...