1 ; RUN: llvm-as < %s | llc -march=arm -disable-arm-if-conversion > %t
7 define void @f1(i32 %a, i32 %b, i32* %v) {
9 %tmp = icmp eq i32 %a, %b ; <i1> [#uses=1]
10 br i1 %tmp, label %cond_true, label %return
12 cond_true: ; preds = %entry
16 return: ; preds = %entry
20 define void @f2(i32 %a, i32 %b, i32* %v) {
22 %tmp = icmp slt i32 %a, %b ; <i1> [#uses=1]
23 br i1 %tmp, label %cond_true, label %return
25 cond_true: ; preds = %entry
29 return: ; preds = %entry
33 define void @f3(i32 %a, i32 %b, i32* %v) {
35 %tmp = icmp ult i32 %a, %b ; <i1> [#uses=1]
36 br i1 %tmp, label %cond_true, label %return
38 cond_true: ; preds = %entry
42 return: ; preds = %entry
46 define void @f4(i32 %a, i32 %b, i32* %v) {
48 %tmp = icmp ult i32 %a, %b ; <i1> [#uses=1]
49 br i1 %tmp, label %return, label %cond_true
51 cond_true: ; preds = %entry
55 return: ; preds = %entry