[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / ELF / eh-frame-type.test
blob4105491372b8d7742ca6a3988f9972edf87e94e8
1 ## Show that LLD can handle .eh_frame sections of different types.
3 # RUN: yaml2obj %s -o %t1.o -D TYPE=SHT_PROGBITS
4 # RUN: ld.lld %t1.o -o %t1
5 # RUN: llvm-readobj -S %t1 | FileCheck %s
7 # RUN: yaml2obj %s -o %t2.o -D TYPE=SHT_X86_64_UNWIND
8 # RUN: ld.lld %t2.o -o %t2
9 # RUN: llvm-readobj -S %t2 | FileCheck %s
11 # RUN: ld.lld %t1.o %t2.o -o %tboth
12 # RUN: llvm-readobj -S %tboth | FileCheck %s
14 # RUN: ld.lld -r %t1.o %t2.o -o %tboth.ro
15 # RUN: llvm-readobj -S %tboth.ro | FileCheck %s
17 # CHECK:      Name: .eh_frame
18 # CHECK-NEXT: Type: SHT_PROGBITS
20 --- !ELF
21 FileHeader:
22   Class:   ELFCLASS64
23   Data:    ELFDATA2LSB
24   Type:    ET_REL
25   Machine: EM_X86_64
26 Sections:
27   - Name:  .eh_frame
28     Type:  [[TYPE]]
29     Flags: [ SHF_ALLOC ]