diff options
Diffstat (limited to 'test/ELF/tls-got-entry.s')
-rw-r--r-- | test/ELF/tls-got-entry.s | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/test/ELF/tls-got-entry.s b/test/ELF/tls-got-entry.s deleted file mode 100644 index c7b96697ab30b..0000000000000 --- a/test/ELF/tls-got-entry.s +++ /dev/null @@ -1,25 +0,0 @@ -// REQUIRES: x86 -// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o -// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/tls-got-entry.s -o %tso.o -// RUN: ld.lld -shared %tso.o -o %t.so -// RUN: ld.lld %t.o %t.so -o %t1 -// RUN: llvm-readobj -r %t1 | FileCheck %s - -// CHECK: Relocations [ -// CHECK-NEXT: Section ({{.*}}) .rela.dyn { -// CHECK-NEXT: R_X86_64_TPOFF64 tlsshared0 0x0 -// CHECK-NEXT: } -// CHECK-NEXT: ] - -.globl _start -_start: - .byte 0x66 - leaq tlsshared0@tlsgd(%rip),%rdi - .word 0x6666 - rex64 - call __tls_get_addr@plt - .byte 0x66 - leaq tlsshared0@tlsgd(%rip),%rdi - .word 0x6666 - rex64 - call __tls_get_addr@plt |