From 7231c3372f0ebc9a0f13c1ccc672027a91f106a9 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 7 Apr 2016 12:02:42 +0000 Subject: [PATCH] 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 --- lld/test/ELF/rel-offset.s | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lld/test/ELF/rel-offset.s diff --git a/lld/test/ELF/rel-offset.s b/lld/test/ELF/rel-offset.s new file mode 100644 index 0000000000000..6f35bcebc4b02 --- /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: }