brintos

brintos / llvm-project-archived public Read only

0
0
Text · 892 B · 30bee18 Raw
35 lines · yaml
1# RUN: yaml2obj %s -o %t2# RUN: lldb-test object-file %t | FileCheck %s3 4# CHECK-LABEL: Name: .r-x5# CHECK: Permissions: r-x6#7# CHECK-LABEL: Name: .rw-8# CHECK: Permissions: rw-9 10# CHECK-LABEL: Name: .---11# CHECK: Permissions: ---12 13--- !ELF14FileHeader:15  Class:           ELFCLASS6416  Data:            ELFDATA2LSB17  Type:            ET_REL18  Machine:         EM_X86_6419  Entry:           0x00000000000007A020Sections:21  - Name:            .r-x22    Type:            SHT_PROGBITS23    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]24    Content:         DEADBEEFBAADF00D25  - Name:            .rw-26    Type:            SHT_PROGBITS27    Flags:           [ SHF_WRITE, SHF_ALLOC ]28    AddressAlign:    0x000000000000000429    Content:         DEADBEEFBAADF00D30  - Name:            .---31    Type:            SHT_PROGBITS32    AddressAlign:    0x000000000000000133    Content:         DEADBEEFBAADF00D34...35