mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
3c3ee1f8ac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188971 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
381 B
LLVM
20 lines
381 B
LLVM
; RUN: opt < %s -analyze -scalar-evolution | FileCheck %s
|
|
; PR2003
|
|
|
|
; CHECK: umax
|
|
|
|
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
|
|
}
|
|
|