2014-04-04 01:47:24 +02:00
|
|
|
; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
|
2011-07-08 23:50:04 +02:00
|
|
|
; If-conversion defeats the purpose of this test, which is to check CBZ
|
2011-07-12 18:06:01 +02:00
|
|
|
; generation, so use memory barrier instruction to make sure it doesn't
|
|
|
|
; happen and we get actual branches.
|
2009-07-11 09:26:20 +02:00
|
|
|
|
|
|
|
define i32 @t1(i32 %a, i32 %b, i32 %c) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: t1:
|
2009-11-01 19:13:29 +01:00
|
|
|
; CHECK: cbz
|
2011-09-26 23:36:10 +02:00
|
|
|
%tmp2 = icmp eq i32 %a, 0
|
|
|
|
br i1 %tmp2, label %cond_false, label %cond_true
|
2009-07-11 09:26:20 +02:00
|
|
|
|
|
|
|
cond_true:
|
2011-09-26 23:36:10 +02:00
|
|
|
fence seq_cst
|
|
|
|
%tmp5 = add i32 %b, 1
|
|
|
|
%tmp6 = and i32 %tmp5, %c
|
|
|
|
ret i32 %tmp6
|
2009-07-11 09:26:20 +02:00
|
|
|
|
|
|
|
cond_false:
|
2011-09-26 23:36:10 +02:00
|
|
|
fence seq_cst
|
|
|
|
%tmp7 = add i32 %b, -1
|
|
|
|
%tmp8 = xor i32 %tmp7, %c
|
|
|
|
ret i32 %tmp8
|
2009-07-11 09:26:20 +02:00
|
|
|
}
|