From: Rafael Espindola Date: Thu, 7 Apr 2016 12:02:42 +0000 (+0000) Subject: Add a test for the offset of dynamic relocations. X-Git-Tag: llvmorg-3.9.0-rc1~9749 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7231c3372f0ebc9a0f13c1ccc672027a91f106a9;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/lld/test/ELF/rel-offset.s b/lld/test/ELF/rel-offset.s new file mode 100644 index 0000000..6f35bce --- /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: }