16 lines · plain
1// REQUIRES: x862// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o3// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/copy-rel-tls.s -o %t1.o4// RUN: ld.lld %t1.o -shared -soname t1.so -o %t1.so5// RUN: ld.lld %t.o %t1.so -o %t6// RUN: llvm-nm %t1.so | FileCheck %s7// RUN: llvm-nm %t | FileCheck --check-prefix=TLS %s8// foo and tfoo have the same st_value but we should not copy tfoo.9// CHECK: 0000000000003358 B foo10// CHECK: 0000000000003358 B tfoo11// TLS-NOT: tfoo12 13.global _start14_start:15 leaq foo, %rax16