aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/ScalarEvolution/2008-07-19-InfiniteLoop.ll
blob: a3cc600053f46d3a13cf0737cd53f162bbd393c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llvm-as < %s | opt -analyze -scalar-evolution \
; RUN:   -scalar-evolution-max-iterations=0 | grep Unpredictable
; PR2088

define void @fun() {
entry:
        br label %loop
loop:
        %i = phi i8 [ 0, %entry ], [ %i.next, %loop ]
        %i.next = add i8 %i, 4
        %cond = icmp ne i8 %i.next, 6
        br i1 %cond, label %loop, label %exit
exit:
        ret void
}