summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2016-04-07 12:02:42 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2016-04-07 12:02:42 +0000
commit7231c3372f0ebc9a0f13c1ccc672027a91f106a9 (patch)
treeb1cf31bdd9924e57bd98b768060cd80c7f7e3cfa
parent06bbca9ec4bbc5a103c94c4973797ea4ddf944b5 (diff)
downloadbcm5719-llvm-7231c3372f0ebc9a0f13c1ccc672027a91f106a9.tar.gz
bcm5719-llvm-7231c3372f0ebc9a0f13c1ccc672027a91f106a9.zip
Add a test for the offset of dynamic relocations.
I found that a patch I am working on would have broken this and no existing test found it. llvm-svn: 265664
-rw-r--r--lld/test/ELF/rel-offset.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/lld/test/ELF/rel-offset.s b/lld/test/ELF/rel-offset.s
new file mode 100644
index 00000000000..6f35bcebc4b
--- /dev/null
+++ b/lld/test/ELF/rel-offset.s
@@ -0,0 +1,15 @@
+// REQUIRES: x86
+// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
+// RUN: ld.lld %t.o -o %t -shared
+// RUN: llvm-readobj -r %t | FileCheck %s
+
+ .section .data.foo,"aw",@progbits
+ .quad foo
+
+ .section .data.zed,"aw",@progbits
+ .quad foo
+
+// CHECK: Section ({{.*}}) .rela.dyn {
+// CHECK-NEXT: 0x2000 R_X86_64_64 foo 0x0
+// CHECK-NEXT: 0x2008 R_X86_64_64 foo 0x0
+// CHECK-NEXT: }
OpenPOWER on IntegriCloud