[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AArch64 / callbr-asm-label.ll
blob583587da71a9598335dc49e17ccf0010cebbeb49
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 .Ltmp0
9 ; CHECK-LABEL: .Ltmp0:
10 ; CHECK-LABEL: .LBB0_1: // %l_yes
11 ; CHECK-LABEL: .LBB0_2: // %cleanup
12 entry:
13   callbr void asm sideeffect "1:\0A\09.word b, ${0:l}\0A\09", "X"(i8* blockaddress(@test1, %l_yes))
14           to label %cleanup [label %l_yes]
16 l_yes:
17   br label %cleanup
19 cleanup:
20   %retval.0 = phi i32 [ 1, %l_yes ], [ 0, %entry ]
21   ret i32 %retval.0
24 define void @test2() {
25 ; CHECK-LABEL: test2:
26 entry:
27   %0 = load i32, i32* @X, align 4
28   %and = and i32 %0, 1
29   %tobool = icmp eq i32 %and, 0
30   br i1 %tobool, label %if.end10, label %if.then
32 if.then:
33 ; CHECK:       .word b
34 ; CHECK-NEXT:  .word .Ltmp2
35 ; CHECK-LABEL: .Ltmp2:
36 ; CHECK-NEXT:  .LBB1_3: // %if.end6
37   callbr void asm sideeffect "1:\0A\09.word b, ${0:l}\0A\09", "X"(i8* blockaddress(@test2, %if.end6))
38           to label %if.then4 [label %if.end6]
40 if.then4:
41   %call5 = tail call i32 bitcast (i32 (...)* @g to i32 ()*)()
42   br label %if.end6
44 if.end6:
45   %.pre = load i32, i32* @X, align 4
46   %.pre13 = and i32 %.pre, 1
47   %phitmp = icmp eq i32 %.pre13, 0
48   br i1 %phitmp, label %if.end10, label %if.then9
50 if.then9:
51 ; CHECK-LABEL: .Ltmp4:
52 ; CHECK-NEXT:  .LBB1_5: // %l_yes
53   callbr void asm sideeffect "", "X"(i8* blockaddress(@test2, %l_yes))
54           to label %if.end10 [label %l_yes]
56 if.end10:
57   br label %l_yes
59 l_yes:
60   ret void
63 declare i32 @g(...)