[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / test / MC / ARM / thumb1-branch-reloc.s
blobc599389d1c2dc75a69554a8b7ffb3227d475efa9
1 @ RUN: llvm-mc -triple thumbv6-eabi -filetype obj -o - %s | llvm-readobj -r - \
2 @ RUN: | FileCheck %s
4 .syntax unified
6 .extern h
7 .section .text.uncond
9 b h
11 @CHECK: Section {{.*}} .rel.text.uncond {
12 @CHECK: 0x0 R_ARM_THM_JUMP11
13 @CHECK: }
14 .section .text.cond
16 ble h
18 @CHECK: Section {{.*}} .rel.text.cond {
19 @CHECK: 0x0 R_ARM_THM_JUMP8
20 @CHECK: }