2011-07-12 16:06:01 +00:00
|
|
|
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
|
2011-07-08 21:50:04 +00:00
|
|
|
; If-conversion defeats the purpose of this test, which is to check CBZ
|
2011-07-12 16:06:01 +00:00
|
|
|
; generation, so use memory barrier instruction to make sure it doesn't
|
|
|
|
; happen and we get actual branches.
|
2009-07-11 07:26:20 +00:00
|
|
|
|
|
|
|
define i32 @t1(i32 %a, i32 %b, i32 %c) {
|
2009-11-01 18:13:29 +00:00
|
|
|
; CHECK: t1:
|
|
|
|
; CHECK: cbz
|
2009-07-11 07:26:20 +00:00
|
|
|
%tmp2 = icmp eq i32 %a, 0
|
|
|
|
br i1 %tmp2, label %cond_false, label %cond_true
|
|
|
|
|
|
|
|
cond_true:
|
2011-07-12 16:06:01 +00:00
|
|
|
call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 false)
|
2009-07-11 07:26:20 +00:00
|
|
|
%tmp5 = add i32 %b, 1
|
|
|
|
%tmp6 = and i32 %tmp5, %c
|
|
|
|
ret i32 %tmp6
|
|
|
|
|
|
|
|
cond_false:
|
2011-07-12 16:06:01 +00:00
|
|
|
call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 false)
|
2009-07-11 07:26:20 +00:00
|
|
|
%tmp7 = add i32 %b, -1
|
|
|
|
%tmp8 = xor i32 %tmp7, %c
|
|
|
|
ret i32 %tmp8
|
|
|
|
}
|
2011-07-12 16:06:01 +00:00
|
|
|
|
|
|
|
declare void @llvm.memory.barrier(i1, i1, i1, i1, i1) nounwind
|