view lld/test/ELF/noplt-pie.s @ 266:00f31e85ec16 default tip

Added tag current for changeset 31d058e83c98
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Oct 2023 10:13:55 +0900
parents 1d019706d866
children
line wrap: on
line source

# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t1.o
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/shared.s -o %t2.o
# RUN: ld.lld -shared %t2.o -o %t2.so
# RUN: ld.lld --hash-style=sysv %t1.o %t2.so -o %t.out
# RUN: llvm-readobj -S -r %t.out | FileCheck %s

# CHECK: Section {
# CHECK-NOT: Name: .plt

# CHECK:      Relocations [
# CHECK-NEXT:   Section ({{.*}}) .rela.dyn {
# CHECK-NEXT:     R_X86_64_GLOB_DAT bar 0x0
# CHECK-NEXT:     R_X86_64_GLOB_DAT zed 0x0
# CHECK-NEXT:   }
# CHECK-NEXT: ]

.global _start
_start:
 movq bar@GOTPCREL(%rip), %rcx
 movq zed@GOTPCREL(%rip), %rcx