mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
18 lines
373 B
LLVM
18 lines
373 B
LLVM
|
; RUN: llvm-as < %s | opt -analyze -scalar-evolution | 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
|
||
|
}
|
||
|
|