llvm-for-llvmta/test/tools/yaml2obj/ELF/eflags.yaml

17 lines
476 B
YAML
Raw Normal View History

2022-04-25 10:02:23 +02:00
## Check how the 'Flags' key can be used to encode e_flags field values.
## Check we are able to produce no flags for EM_NONE. EM_NONE is an arbitrary
## e_machine type that has no EF_* values defined for it.
# RUN: yaml2obj %s -o %t-no-flags
# RUN: llvm-readelf --file-headers %t-no-flags | FileCheck %s --check-prefix=NOFLAGS
# NOFLAGS: Flags: 0x0{{$}}
--- !ELF
FileHeader:
Class: ELFCLASS32
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_NONE
Flags: [ ]