Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / copy-rel-tls.s
blobdf193a9be295a52141d2cee25e464c010f7ba915
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
13 .global _start
14 _start:
15 leaq foo, %rax