Legalizer was missing code that expand fpow to a libcall.
[oota-llvm.git] / test / CodeGen / ARM / ifcvt7.ll
1 ; RUN: llvm-as < %s | \
2 ; RUN:   llc -march=arm -mtriple=arm-apple-darwin
3 ; RUN: llvm-as < %s | \
4 ; RUN:   llc -march=arm -mtriple=arm-apple-darwin | \
5 ; RUN:   grep cmpeq | count 1
6 ; RUN: llvm-as < %s | \
7 ; RUN:   llc -march=arm -mtriple=arm-apple-darwin | \
8 ; RUN:   grep moveq | count 1
9 ; RUN: llvm-as < %s | \
10 ; RUN:   llc -march=arm -mtriple=arm-apple-darwin | \
11 ; RUN:   grep ldmeq | count 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
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 }