diff options
Diffstat (limited to 'test/ELF/copy-rel-large.s')
-rw-r--r-- | test/ELF/copy-rel-large.s | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/ELF/copy-rel-large.s b/test/ELF/copy-rel-large.s deleted file mode 100644 index 035eca3bf10da..0000000000000 --- a/test/ELF/copy-rel-large.s +++ /dev/null @@ -1,20 +0,0 @@ -// REQUIRES: x86 -// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/copy-rel-large.s -o %t1.o -// RUN: ld.lld -shared %t1.o -o %t1.so -// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t2.o -// RUN: ld.lld %t2.o %t1.so -o %t2 -// RUN: llvm-readobj --dyn-symbols %t2 | FileCheck %s - - .global _start -_start: - .quad foo - -// CHECK: Symbol { -// CHECK: Name: foo -// CHECK-NEXT: Value: -// CHECK-NEXT: Size: 4294967297 -// CHECK-NEXT: Binding: -// CHECK-NEXT: Type: -// CHECK-NEXT: Other: -// CHECK-NEXT: Section: .bss.rel.ro -// CHECK-NEXT: } |