blob: 86e07ec41b9ce2fb2f9b3edba5a5756f7ce2bc14 [file] [log] [blame]
Dan Gohman8a977e22010-01-26 19:25:59 +00001; RUN: opt < %s -analyze -scalar-evolution \
Dan Gohman46bdfb02009-02-24 18:55:53 +00002; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 113}
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00003; PR2088
4
5define void @fun() {
6entry:
7 br label %loop
8loop:
9 %i = phi i8 [ 0, %entry ], [ %i.next, %loop ]
10 %i.next = add i8 %i, 18
11 %cond = icmp ne i8 %i.next, 4
12 br i1 %cond, label %loop, label %exit
13exit:
14 ret void
15}