2009-06-18 04:56:26 +08:00
|
|
|
; RUN: llvm-as < %s | opt -analyze -scalar-evolution -disable-output \
|
2009-02-25 02:55:53 +08:00
|
|
|
; RUN: -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 113}
|
2008-07-20 23:55:14 +08:00
|
|
|
; PR2088
|
|
|
|
|
|
|
|
define void @fun() {
|
|
|
|
entry:
|
|
|
|
br label %loop
|
|
|
|
loop:
|
|
|
|
%i = phi i8 [ 0, %entry ], [ %i.next, %loop ]
|
|
|
|
%i.next = add i8 %i, 18
|
|
|
|
%cond = icmp ne i8 %i.next, 4
|
|
|
|
br i1 %cond, label %loop, label %exit
|
|
|
|
exit:
|
|
|
|
ret void
|
|
|
|
}
|