e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
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: }
|
|
|