brintos

brintos / llvm-project-archived public Read only

0
0
Text · 614 B · eb09721 Raw
32 lines · plain
1@ RUN: llvm-mc -triple thumbv6-eabi -filetype obj -o - %s | llvm-readobj -r - \2@ RUN:     | FileCheck %s3 4        .syntax unified5 6        .extern h7        .section .text.uncond8 9        b h10        11@CHECK: Section {{.*}} .rel.text.uncond {12@CHECK:   0x0 R_ARM_THM_JUMP1113@CHECK: }14        .section .text.cond15 16        ble h17 18@CHECK: Section {{.*}} .rel.text.cond {19@CHECK:   0x0 R_ARM_THM_JUMP820@CHECK: }21 22        .section .text.insection23.globl global24local:25global:26        b local27        b global28 29@CHECK:      Section {{.*}} .rel.text.insection {30@CHECK-NEXT:   0x2 R_ARM_THM_JUMP11 global31@CHECK-NEXT: }32