blob: 4816cea50fb02e9a5be7cc1cf9928fb6431c791b [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 | \
5; RUN: grep cmpeq | wc -l | grep 1
6; RUN: llvm-as < %s | \
7; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion | \
8; RUN: grep moveq | wc -l | grep 1
9; RUN: llvm-as < %s | \
10; RUN: llc -march=arm -mtriple=arm-apple-darwin -enable-arm-if-conversion | \
11; RUN: grep ldmeq | wc -l | grep 1
12; 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}