[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / callbr-asm-label.ll
blob1818f94a831b94510eeb87b39c6a4dff18578976
1 ; RUN: llc < %s -mtriple=aarch64-linux-gnu | FileCheck %s
3 @X = common local_unnamed_addr global i32 0, align 4
5 define i32 @test1() {
6 ; CHECK-LABEL: test1:
7 ; CHECK:         .word b
8 ; CHECK-NEXT:    .word .LBB0_2
9 ; CHECK: // %bb.1:
10 ; CHECK: .LBB0_2: // Block address taken
11 entry:
12   callbr void asm sideeffect "1:\0A\09.word b, ${0:l}\0A\09", "!i"()
13           to label %cleanup [label %indirect]
15 indirect:
16   br label %cleanup
18 cleanup:
19   %retval.0 = phi i32 [ 1, %indirect ], [ 0, %entry ]
20   ret i32 %retval.0
23 define void @test2() {
24 ; CHECK-LABEL: test2:
25 entry:
26   %0 = load i32, ptr @X, align 4
27   %and = and i32 %0, 1
28   %tobool = icmp eq i32 %and, 0
29   br i1 %tobool, label %if.end10, label %if.then
31 if.then:
32 ; CHECK:       .word b
33 ; CHECK-NEXT:  .word .LBB1_3
34 ; CHECK:       .LBB1_3: // Block address taken
35   callbr void asm sideeffect "1:\0A\09.word b, ${0:l}\0A\09", "!i"()
36           to label %if.then4 [label %if.end6]
38 if.then4:
39   %call5 = tail call i32 @g()
40   br label %if.end6
42 if.end6:
43   %.pre = load i32, ptr @X, align 4
44   %.pre13 = and i32 %.pre, 1
45   %phitmp = icmp eq i32 %.pre13, 0
46   br i1 %phitmp, label %if.end10, label %if.then9
48 if.then9:
49 ; CHECK: .LBB1_5: // Block address taken
50   callbr void asm sideeffect "", "!i"()
51           to label %if.end10 [label %l_yes]
53 if.end10:
54   br label %l_yes
56 l_yes:
57   ret void
60 declare i32 @g(...)