brintos

brintos / llvm-project-archived public Read only

0
0
Text · 810 B · b7655aa Raw
29 lines · yaml
1# RUN: yaml2obj %s -o %t2# RUN: llvm-readobj --sections %t | FileCheck -check-prefix=OBJ %s3# RUN: obj2yaml %t | FileCheck -check-prefix=YAML %s4 5--- !ELF6FileHeader:7  Class:           ELFCLASS328  Data:            ELFDATA2LSB9  Type:            ET_REL10  Machine:         EM_38611Sections:12  - Name:            .debug_line13    Type:            SHT_PROGBITS14    Flags:           [ SHF_COMPRESSED ]15 16# OBJ:      Sections [17# OBJ:        Section {18# OBJ:          Index: 119# OBJ-NEXT:     Name: .debug_line (1)20# OBJ-NEXT:     Type: SHT_PROGBITS (0x1)21# OBJ-NEXT:     Flags [ (0x800)22# OBJ-NEXT:       SHF_COMPRESSED (0x800)23# OBJ-NEXT:     ]24 25# YAML:      Sections:26# YAML-NEXT:   - Name:            .debug_line27# YAML-NEXT:     Type:            SHT_PROGBITS28# YAML-NEXT:     Flags:           [ SHF_COMPRESSED ]29