mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-10 06:24:58 +00:00
af86df2b0f
These need to be mapped through to R_ARM_THM_JUMP{11,8} respectively. Fixes PR30279. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280651 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
417 B
ArmAsm
21 lines
417 B
ArmAsm
@ RUN: llvm-mc -triple thumbv6-eabi -filetype obj -o - %s | llvm-readobj -r - \
|
|
@ RUN: | FileCheck %s
|
|
|
|
.syntax unified
|
|
|
|
.extern h
|
|
.section .text.uncond
|
|
|
|
b h
|
|
|
|
@CHECK: Section {{.*}} .rel.text.uncond {
|
|
@CHECK: 0x0 R_ARM_THM_JUMP11
|
|
@CHECK: }
|
|
.section .text.cond
|
|
|
|
ble h
|
|
|
|
@CHECK: Section {{.*}} .rel.text.cond {
|
|
@CHECK: 0x0 R_ARM_THM_JUMP8
|
|
@CHECK: }
|
|
|