diff options
Diffstat (limited to 'test/ELF/relocatable-local-sym.s')
-rw-r--r-- | test/ELF/relocatable-local-sym.s | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/ELF/relocatable-local-sym.s b/test/ELF/relocatable-local-sym.s deleted file mode 100644 index b894d6b9900c..000000000000 --- a/test/ELF/relocatable-local-sym.s +++ /dev/null @@ -1,16 +0,0 @@ -# REQUIRES: x86 -# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t1.o -# RUN: ld.lld -r %t1.o -o %t2.o -# RUN: llvm-readobj -r %t2.o | FileCheck %s - -# CHECK: Relocations [ -# CHECK-NEXT: Section ({{.*}}) .rela.text { -# CHECK-NEXT: 0x3 R_X86_64_PC32 .Lstr 0xFFFFFFFFFFFFFFFC -# CHECK-NEXT: } -# CHECK-NEXT: ] - - leaq .Lstr(%rip), %rdi - - .section .rodata.str1.1,"aMS",@progbits,1 - .Lstr: - .asciz "abc\n" |