[Alignment][NFC] migrate DataLayout internal struct to llvm::Align
[llvm-core.git] / test / CodeGen / AArch64 / branch-relax-asm.ll
blob89d0529c96674fd04414ee4d271b07b34c2f08de
1 ; RUN: llc -mtriple=aarch64-apple-ios7.0 -disable-block-placement -aarch64-tbz-offset-bits=4 -o - %s | FileCheck %s
2 define i32 @test_asm_length(i32 %in) {
3 ; CHECK-LABEL: test_asm_length:
5   ; It would be more natural to use just one "tbnz %false" here, but if the
6   ; number of instructions in the asm is counted reasonably, that block is out
7   ; of the limited range we gave tbz. So branch relaxation has to invert the
8   ; condition.
9 ; CHECK:     tbz w0, #0, [[TRUE:LBB[0-9]+_[0-9]+]]
10 ; CHECK:     b [[FALSE:LBB[0-9]+_[0-9]+]]
12 ; CHECK: [[TRUE]]:
13 ; CHECK:     mov w0, #4
14 ; CHECK:     nop
15 ; CHECK:     nop
16 ; CHECK:     nop
17 ; CHECK:     nop
18 ; CHECK:     nop
19 ; CHECK:     nop
20 ; CHECK:     ret
22 ; CHECK: [[FALSE]]:
23 ; CHECK:     ret
25   %val = and i32 %in, 1
26   %tst = icmp eq i32 %val, 0
27   br i1 %tst, label %true, label %false
29 true:
30   call void asm sideeffect "nop\0A\09nop\0A\09nop\0A\09nop\0A\09nop\0A\09nop", ""()
31   ret i32 4
33 false:
34   ret i32 0