blob: 922d9a97542e86b2524460054892788b0f98bce7 [file] [log] [blame]
Nick Lewycky04b35e82008-05-25 23:43:32 +00001; RUN: llvm-as < %s | opt -analyze -scalar-evolution | grep {61 iterations}
2
3define i32 @func_6() nounwind {
4entry:
5 br label %bb5
6
7bb: ; preds = %bb5
8 %tmp2 = add i32 %i.0, 1 ; <i32> [#uses=1]
9 %tmp4 = add i8 %x.0, -4 ; <i8> [#uses=1]
10 br label %bb5
11
12bb5: ; preds = %bb, %entry
13 %x.0 = phi i8 [ 0, %entry ], [ %tmp4, %bb ] ; <i8> [#uses=2]
14 %i.0 = phi i32 [ 0, %entry ], [ %tmp2, %bb ] ; <i32> [#uses=2]
15 %tmp7 = icmp eq i8 %x.0, 12 ; <i1> [#uses=1]
16 br i1 %tmp7, label %return, label %bb
17
18return: ; preds = %bb5
19 ret i32 %i.0
20}