blob: 9ee781fba77031e7683d51bf75d2953919a383ae [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -analyze -scalar-evolution -disable-output \
Dan Gohman169195e2010-01-09 18:17:45 +00002; RUN: | grep {Loop %bb: Unpredictable backedge-taken count\\.}
Dan Gohmand2b62c42009-06-21 23:46:38 +00003
4; ScalarEvolution can't compute a trip count because it doesn't know if
5; dividing by the stride will have a remainder. This could theoretically
6; be teaching it how to use a more elaborate trip count computation.
Nick Lewyckyc768d382008-11-18 15:10:54 +00007
8define i32 @f(i32 %x) nounwind readnone {
9entry:
10 %0 = icmp ugt i32 %x, 4 ; <i1> [#uses=1]
11 br i1 %0, label %bb.nph, label %bb2
12
13bb.nph: ; preds = %entry
14 br label %bb
15
16bb: ; preds = %bb.nph, %bb1
17 %indvar = phi i32 [ 0, %bb.nph ], [ %indvar.next, %bb1 ] ; <i32> [#uses=2]
18 %tmp = mul i32 %indvar, -3 ; <i32> [#uses=1]
19 %x_addr.04 = add i32 %tmp, %x ; <i32> [#uses=1]
20 %1 = add i32 %x_addr.04, -3 ; <i32> [#uses=2]
21 br label %bb1
22
23bb1: ; preds = %bb
24 %2 = icmp ugt i32 %1, 4 ; <i1> [#uses=1]
25 %indvar.next = add i32 %indvar, 1 ; <i32> [#uses=1]
26 br i1 %2, label %bb, label %bb1.bb2_crit_edge
27
28bb1.bb2_crit_edge: ; preds = %bb1
29 %.lcssa = phi i32 [ %1, %bb1 ] ; <i32> [#uses=1]
30 br label %bb2
31
32bb2: ; preds = %bb1.bb2_crit_edge, %entry
33 %x_addr.0.lcssa = phi i32 [ %.lcssa, %bb1.bb2_crit_edge ], [ %x, %entry ] ; <i32> [#uses=1]
34 ret i32 %x_addr.0.lcssa
35}