Mercurial > hg > CbC > CbC_llvm
view lld/test/ELF/arm-sbrel32.s @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 0572611fdcc8 |
children |
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: e12fff1e 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