aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/relocatable-reloc.s
blob: c576073a75104b01c00da1985c3c45653aab9f70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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: ]