Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / linkerscript / orphan-first-cmd.test
blobc68312a116712fcb5f4b79a7d41d47896e9016da
1 # REQUIRES: x86
2 # RUN: echo '.section .bar, "aw"' \
3 # RUN:   | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t.o
4 # RUN: ld.lld -o %t -T %s %t.o -shared
5 # RUN: llvm-readobj -S %t | FileCheck %s
7 SECTIONS {
8   foo = 123;
9   . = 0x1000;
10   . = 0x2000;
11   .bar : { *(.bar) }
14 # CHECK:      Name: .text
15 # CHECK-NEXT: Type: SHT_PROGBITS
16 # CHECK-NEXT: Flags [
17 # CHECK-NEXT:   SHF_ALLOC
18 # CHECK-NEXT:   SHF_EXECINSTR
19 # CHECK-NEXT: ]
20 # CHECK-NEXT: Address: 0x1070