Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | \ |
Evan Cheng | a5866ce | 2007-09-20 18:03:23 +0000 | [diff] [blame^] | 2 | ; RUN: llc -march=arm -mtriple=arm-apple-darwin |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 3 | ; RUN: llvm-as < %s | \ |
Evan Cheng | a5866ce | 2007-09-20 18:03:23 +0000 | [diff] [blame^] | 4 | ; RUN: llc -march=arm -mtriple=arm-apple-darwin | \ |
Dan Gohman | 8c89a50 | 2007-08-15 13:36:28 +0000 | [diff] [blame] | 5 | ; RUN: grep cmpeq | count 1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 6 | ; RUN: llvm-as < %s | \ |
Evan Cheng | a5866ce | 2007-09-20 18:03:23 +0000 | [diff] [blame^] | 7 | ; RUN: llc -march=arm -mtriple=arm-apple-darwin | \ |
Dan Gohman | 8c89a50 | 2007-08-15 13:36:28 +0000 | [diff] [blame] | 8 | ; RUN: grep moveq | count 1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 9 | ; RUN: llvm-as < %s | \ |
Evan Cheng | a5866ce | 2007-09-20 18:03:23 +0000 | [diff] [blame^] | 10 | ; RUN: llc -march=arm -mtriple=arm-apple-darwin | \ |
Dan Gohman | 8c89a50 | 2007-08-15 13:36:28 +0000 | [diff] [blame] | 11 | ; RUN: grep ldmeq | count 1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 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 | |
| 16 | define fastcc i32 @CountTree(%struct.quad_struct* %tree) { |
| 17 | entry: |
| 18 | br label %tailrecurse |
| 19 | |
| 20 | tailrecurse: ; 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 | |
| 33 | bb: ; preds = %tailrecurse |
| 34 | %tmp41 = tail call fastcc i32 @CountTree( %struct.quad_struct* %tmp9 ) ; <i32> [#uses=0] |
| 35 | br label %tailrecurse |
| 36 | |
| 37 | return: ; preds = %tailrecurse |
| 38 | ret i32 0 |
| 39 | } |