1// REQUIRES: x86
2// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
3// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/copy-rel-tls.s -o %t1.o
4// RUN: ld.lld %t1.o -shared -soname t1.so -o %t1.so
5// RUN: ld.lld %t.o %t1.so -o %t
6// RUN: llvm-nm %t1.so | FileCheck %s
7// RUN: llvm-nm %t | FileCheck --check-prefix=TLS %s
8// foo and tfoo have the same st_value but we should not copy tfoo.
9// CHECK: 0000000000003358 B foo
10// CHECK: 0000000000003358 B tfoo
11// TLS-NOT: tfoo
12
13.global _start
14_start:
15  leaq foo, %rax
16