Heuristic: If the number of operands in the alias are more than the number of
[llvm/stm8.git] / test / Analysis / ScalarEvolution / 2008-02-11-ReversedCondition.ll
blobfe3a7f4191da5f2b4a097c74bf0ad6e111483cf6
1 ; RUN: opt < %s -scalar-evolution -analyze | grep {Loop %header: backedge-taken count is (0 smax %n)}
3 define void @foo(i32 %n) {
4 entry:
5         br label %header
6 header:
7         %i = phi i32 [ 0, %entry ], [ %i.inc, %next ]
8         %cond = icmp sgt i32 %n, %i
9         br i1 %cond, label %next, label %return
10 next:
11         %i.inc = add i32 %i, 1
12         br label %header
13 return:
14         ret void