mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
a0cf4d86b2
These need to be mapped through to R_ARM_THM_JUMP{11,8} respectively. Fixes PR30279. llvm-svn: 280651
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: }
|
|
|