Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / tools / llvm-ifs / binary-read-no-dt-strtab.test
blob813e46561c6784a8876af7930279559521c6fb7a
1 # RUN: yaml2obj %s -o %t
2 # RUN: not llvm-ifs --input-format=ELF --output-ifs=%t.tbe %t 2>&1 | FileCheck %s
4 !ELF
5 FileHeader:
6   Class:           ELFCLASS64
7   Data:            ELFDATA2LSB
8   Type:            ET_DYN
9   Machine:         EM_X86_64
10 Sections:
11   - Name:            .dynstr
12     Type:            SHT_STRTAB
13     Flags:           [ SHF_ALLOC ]
14     Address:         0x0000
15     Content:         "00"
16   - Name:            .dynamic
17     Type:            SHT_DYNAMIC
18     Flags:           [ SHF_ALLOC ]
19     Address:         0x0000000000000008
20     Link:            .dynstr
21     AddressAlign:    0x0000000000000008
22     EntSize:         0x0000000000000010
23     Entries:
24       - Tag:             DT_STRSZ
25         Value:           0x0000000000000001
26       - Tag:             DT_NULL
27         Value:           0x0000000000000000
28 ProgramHeaders:
29   - Type:     PT_LOAD
30     Flags:    [ PF_R ]
31     VAddr:    0x0000
32     Align:    8
33     FirstSec: .dynstr
34     LastSec:  .dynamic
35   - Type:     PT_DYNAMIC
36     Flags:    [ PF_X, PF_R ]
37     VAddr:    0x0008
38     FirstSec: .dynamic
39     LastSec:  .dynamic
41 # CHECK: Couldn't locate dynamic string table (no DT_STRTAB entry)