Mercurial > hg > CbC > CbC_llvm
view lld/test/ELF/arm-sbrel32.s @ 192:d7606dcf6fce
Added tag llvm10 for changeset 0572611fdcc8
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 14 Dec 2020 18:01:34 +0900 |
parents | 0572611fdcc8 |
children | c4bab56944e8 |
line wrap: on
line source
// REQUIRES: arm // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t.o // RUN: ld.lld %t.o -o %t // RUN: llvm-objdump -d --triple=armv7a-none-linux-gnueabi %t | FileCheck %s // Test the R_ARM_SBREL32 relocation which calculates the offset of the Symbol // from the static base. We define the static base to be the address of the // segment containing the symbol .text .syntax unified .globl _start .p2align 2 .type _start,%function _start: .fnstart bx lr .long foo(sbrel) .long foo2(sbrel) .long foo3(sbrel) .long foo4(sbrel) // RW segment starts here .data .p2align 4 foo: .word 10 foo2: .word 20 .bss foo3: .space 4 foo4: .space 4 // CHECK: Disassembly of section .text: // CHECK-EMPTY: // CHECK-NEXT: <_start>: // CHECK-NEXT: 200d4: 1e ff 2f e1 bx lr // CHECK: 200d8: 00 00 00 00 .word 0x00000000 // CHECK-NEXT: 200dc: 04 00 00 00 .word 0x00000004 // CHECK-NEXT: 200e0: 08 00 00 00 .word 0x00000008 // CHECK-NEXT: 200e4: 0c 00 00 00 .word 0x0000000c