2011-07-12 16:06:01 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=+thumb2 | FileCheck %s
|
2013-06-26 16:52:32 +00:00
|
|
|
; If-conversion defeats the purpose of this test, which is to check
|
|
|
|
; conditional branch generation, so a call to make sure it doesn't
|
2011-07-12 16:06:01 +00:00
|
|
|
; happen and we get actual branches.
|
2009-08-14 18:31:44 +00:00
|
|
|
|
2013-06-26 16:52:32 +00:00
|
|
|
declare void @foo()
|
|
|
|
|
2010-05-03 14:35:47 +00:00
|
|
|
define i32 @f1(i32 %a, i32 %b, i32* %v) {
|
2009-08-14 18:31:44 +00:00
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f1:
|
2009-10-31 19:22:24 +00:00
|
|
|
; CHECK: bne LBB
|
2009-08-14 18:31:44 +00:00
|
|
|
%tmp = icmp eq i32 %a, %b ; <i1> [#uses=1]
|
|
|
|
br i1 %tmp, label %cond_true, label %return
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2009-08-14 18:31:44 +00:00
|
|
|
store i32 0, i32* %v
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 0
|
2009-08-14 18:31:44 +00:00
|
|
|
|
|
|
|
return: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 1
|
2009-08-14 18:31:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-03 14:35:47 +00:00
|
|
|
define i32 @f2(i32 %a, i32 %b, i32* %v) {
|
2009-08-14 18:31:44 +00:00
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f2:
|
2009-10-31 19:22:24 +00:00
|
|
|
; CHECK: bge LBB
|
2009-08-14 18:31:44 +00:00
|
|
|
%tmp = icmp slt i32 %a, %b ; <i1> [#uses=1]
|
|
|
|
br i1 %tmp, label %cond_true, label %return
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2009-08-14 18:31:44 +00:00
|
|
|
store i32 0, i32* %v
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 0
|
2009-08-14 18:31:44 +00:00
|
|
|
|
|
|
|
return: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 1
|
2009-08-14 18:31:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-03 14:35:47 +00:00
|
|
|
define i32 @f3(i32 %a, i32 %b, i32* %v) {
|
2009-08-14 18:31:44 +00:00
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f3:
|
2009-10-31 19:22:24 +00:00
|
|
|
; CHECK: bhs LBB
|
2009-08-14 18:31:44 +00:00
|
|
|
%tmp = icmp ult i32 %a, %b ; <i1> [#uses=1]
|
|
|
|
br i1 %tmp, label %cond_true, label %return
|
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2009-08-14 18:31:44 +00:00
|
|
|
store i32 0, i32* %v
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 0
|
2009-08-14 18:31:44 +00:00
|
|
|
|
|
|
|
return: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 1
|
2009-08-14 18:31:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-03 14:35:47 +00:00
|
|
|
define i32 @f4(i32 %a, i32 %b, i32* %v) {
|
2009-08-14 18:31:44 +00:00
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: f4:
|
2009-10-31 19:22:24 +00:00
|
|
|
; CHECK: blo LBB
|
2012-04-16 13:49:17 +00:00
|
|
|
%tmp = icmp uge i32 %a, %b ; <i1> [#uses=1]
|
|
|
|
br i1 %tmp, label %cond_true, label %return
|
2009-08-14 18:31:44 +00:00
|
|
|
|
|
|
|
cond_true: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2009-08-14 18:31:44 +00:00
|
|
|
store i32 0, i32* %v
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 0
|
2009-08-14 18:31:44 +00:00
|
|
|
|
|
|
|
return: ; preds = %entry
|
2013-06-26 16:52:32 +00:00
|
|
|
call void @foo()
|
2010-05-03 14:35:47 +00:00
|
|
|
ret i32 1
|
2009-08-14 18:31:44 +00:00
|
|
|
}
|