blob: b177183355102cba5445b123e23b8c0364c56d84 [file] [log] [blame]
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
# RUN: ld.lld -pie %t.o -o %tout
# RUN: llvm-objdump -section-headers %tout | FileCheck %s
# RUN: llvm-readobj --dynamic-table -r %tout | FileCheck %s --check-prefix=TAGS
## Check we produce DT_PLTREL/DT_JMPREL/DT_PLTGOT and DT_PLTRELSZ tags
## when there are no other relocations except R_*_IRELATIVE.
# CHECK: Name Size VMA
# CHECK: .rela.plt 00000030 0000000000000248
# CHECK: .got.plt 00000010 0000000000003000
# TAGS: Relocations [
# TAGS-NEXT: Section {{.*}} .rela.plt {
# TAGS-NEXT: R_X86_64_IRELATIVE
# TAGS-NEXT: R_X86_64_IRELATIVE
# TAGS-NEXT: }
# TAGS-NEXT: ]
# TAGS: Tag Type Name/Value
# TAGS: 0x0000000000000017 JMPREL 0x248
# TAGS: 0x0000000000000002 PLTRELSZ 48
# TAGS: 0x0000000000000003 PLTGOT 0x3000
# TAGS: 0x0000000000000014 PLTREL RELA
.text
.type foo STT_GNU_IFUNC
.globl foo
foo:
ret
.type bar STT_GNU_IFUNC
.globl bar
bar:
ret
.globl _start
_start:
call foo
call bar