1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-28 04:33:05 +00:00
llvm-6502/test/Analysis/ScalarEvolution/2008-07-19-InfiniteLoop.ll
2010-01-26 19:25:59 +00:00

16 lines
371 B
LLVM

; RUN: opt < %s -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
}