Home | History | Annotate | Download | only in ARM
      1 @ RUN: llvm-mc -triple thumbv6-eabi -filetype obj -o - %s | llvm-readobj -r - \
      2 @ RUN:     | FileCheck %s
      3 
      4         .syntax unified
      5 
      6         .extern h
      7         .section .text.uncond
      8 
      9         b h
     10 
     11 @CHECK: Section {{.*}} .rel.text.uncond {
     12 @CHECK:   0x0 R_ARM_THM_JUMP11
     13 @CHECK: }
     14         .section .text.cond
     15 
     16         ble h
     17 
     18 @CHECK: Section {{.*}} .rel.text.cond {
     19 @CHECK:   0x0 R_ARM_THM_JUMP8
     20 @CHECK: }
     21