Add a testcase for symbol resolution with -r.

llvm-svn: 266429
This commit is contained in:
Rafael Espindola 2016-04-15 14:11:36 +00:00
parent 13465da496
commit 11c7fd300e
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// RUN: llvm-mc -filetype=obj %s -o %t.o -triple=x86_64-pc-linux
// RUN: ld.lld %t.o %t.o -r -o %t2.o
// RUN: llvm-readobj -r %t2.o | FileCheck %s
.weak foo
foo:
.quad foo
// CHECK: Relocations [
// CHECK-NEXT: Section ({{.*}}) .rela.text {
// CHECK-NEXT: 0x0 R_X86_64_64 foo 0x0
// CHECK-NEXT: 0x8 R_X86_64_64 foo 0x0
// CHECK-NEXT: }
// CHECK-NEXT: ]