blob: f0b6e473e47b165091ff31923dfcbb68ea9ff3ec [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | \
2; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion
3; RUN: llvm-as < %s | \
4; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion | \
Dan Gohman8c89a502007-08-15 13:36:28 +00005; RUN: grep cmpeq | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006; RUN: llvm-as < %s | \
7; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion | \
Dan Gohman8c89a502007-08-15 13:36:28 +00008; RUN: grep moveq | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00009; RUN: llvm-as < %s | \
10; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion | \
Dan Gohman8c89a502007-08-15 13:36:28 +000011; RUN: grep ldmeq | count 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012; FIXME: Need post-ifcvt branch folding to get rid of the extra br at end of BB1.
13
14 %struct.quad_struct = type { i32, i32, %struct.quad_struct*, %struct.quad_struct*, %struct.quad_struct*, %struct.quad_struct*, %struct.quad_struct* }
15
16define fastcc i32 @CountTree(%struct.quad_struct* %tree) {
17entry:
18 br label %tailrecurse
19
20tailrecurse: ; preds = %bb, %entry
21 %tmp6 = load %struct.quad_struct** null ; <%struct.quad_struct*> [#uses=1]
22 %tmp9 = load %struct.quad_struct** null ; <%struct.quad_struct*> [#uses=2]
23 %tmp12 = load %struct.quad_struct** null ; <%struct.quad_struct*> [#uses=1]
24 %tmp14 = icmp eq %struct.quad_struct* null, null ; <i1> [#uses=1]
25 %tmp17 = icmp eq %struct.quad_struct* %tmp6, null ; <i1> [#uses=1]
26 %tmp23 = icmp eq %struct.quad_struct* %tmp9, null ; <i1> [#uses=1]
27 %tmp29 = icmp eq %struct.quad_struct* %tmp12, null ; <i1> [#uses=1]
28 %bothcond = and i1 %tmp17, %tmp14 ; <i1> [#uses=1]
29 %bothcond1 = and i1 %bothcond, %tmp23 ; <i1> [#uses=1]
30 %bothcond2 = and i1 %bothcond1, %tmp29 ; <i1> [#uses=1]
31 br i1 %bothcond2, label %return, label %bb
32
33bb: ; preds = %tailrecurse
34 %tmp41 = tail call fastcc i32 @CountTree( %struct.quad_struct* %tmp9 ) ; <i32> [#uses=0]
35 br label %tailrecurse
36
37return: ; preds = %tailrecurse
38 ret i32 0
39}