forked from OSchip/llvm-project
31 lines
669 B
Plaintext
31 lines
669 B
Plaintext
#RUN: yaml2obj -format=elf %s > %t
|
|
#RUN: lld -flavor gnu -target x86_64-linux %t --noinhibit-exec \
|
|
#RUN: -o %t1
|
|
#RUN: llvm-objdump -s %t1 | FileCheck %s
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
|
|
Sections:
|
|
- Name: .eh_frame
|
|
Type: SHT_PROGBITS
|
|
Content: "00"
|
|
AddressAlign: 8
|
|
Flags: [SHF_ALLOC]
|
|
|
|
Symbols:
|
|
Local:
|
|
- Name: .eh_frame
|
|
Type: STT_SECTION
|
|
Section: .eh_frame
|
|
|
|
# CHECK: Contents of section .eh_frame:
|
|
# CHECK-NEXT: 4001e0 00
|
|
# CHECK-NEXT: Contents of section .eh_frame_hdr:
|
|
# CHECK-NEXT: 4001e8 011bffff f4ffffff
|
|
# ^ 0x4001e0 - 0x4001e8 - 4 = 0xfffffff4
|