[PATCH] D111436: [ELF][test] Add testing for dynamic TLS relocations in .debug_info
Andrew Ng via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 12 02:55:57 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG649cc160e38b: [ELF][test] Add testing for dynamic TLS relocations in .debug_info (authored by andrewng).
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111436/new/
https://reviews.llvm.org/D111436
Files:
lld/test/ELF/x86-64-tls-ld-local.s
Index: lld/test/ELF/x86-64-tls-ld-local.s
===================================================================
--- lld/test/ELF/x86-64-tls-ld-local.s
+++ lld/test/ELF/x86-64-tls-ld-local.s
@@ -1,7 +1,7 @@
// REQUIRES: x86
// RUN: llvm-mc %s -o %t.o -filetype=obj -triple=x86_64-pc-linux
// RUN: ld.lld %t.o -o %t.so -shared
-// RUN: llvm-readobj -r -S %t.so | FileCheck %s
+// RUN: llvm-readobj -r -S --hex-dump=.debug_info %t.so | FileCheck %s
// CHECK: Relocations [
// CHECK-NEXT: Section ({{.*}}) .rela.dyn {
@@ -13,6 +13,9 @@
// CHECK-NEXT: }
// CHECK-NEXT: ]
+// CHECK: Hex dump of section '.debug_info':
+// CHECK-NEXT: 0x00000000 04000000 00000000 00000000 00000000
+
data16
leaq bar at TLSGD(%rip), %rdi
data16
@@ -27,3 +30,9 @@
.section .tdata,"awT", at progbits
bar:
.long 42
+foo:
+ .long 43
+
+ .section .debug_info,"", at progbits
+ .quad foo at DTPOFF
+ .quad bar at DTPOFF
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111436.378940.patch
Type: text/x-patch
Size: 909 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211012/85daa38a/attachment.bin>
More information about the llvm-commits
mailing list