summaryrefslogtreecommitdiffstats
path: root/test/Analysis/ScalarEvolution/2008-02-15-UMax.ll
blob: bf9f4a9e8607e54c9aae7f0c35a87d029f53b882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: opt < %s -analyze -scalar-evolution -disable-output | grep umax
; PR2003

define i32 @foo(i32 %n) {
entry:
        br label %header
header:
        %i = phi i32 [ 100, %entry ], [ %i.inc, %next ]
        %cond = icmp ult i32 %i, %n
        br i1 %cond, label %next, label %return
next:
        %i.inc = add i32 %i, 1
        br label %header
return:
        ret i32 %i
}

OpenPOWER on IntegriCloud