Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Analysis / ScalarEvolution / 2008-07-19-WrappingIV.ll
blob803c7d110e72beb0995952cf86cd8fb0bf7f349b
1 ; RUN: opt < %s -analyze -scalar-evolution -disable-output \
2 ; RUN:   -scalar-evolution-max-iterations=0 | grep {backedge-taken count is 113}
3 ; PR2088
5 define void @fun() {
6 entry:
7         br label %loop
8 loop:
9         %i = phi i8 [ 0, %entry ], [ %i.next, %loop ]
10         %i.next = add i8 %i, 18
11         %cond = icmp ne i8 %i.next, 4
12         br i1 %cond, label %loop, label %exit
13 exit:
14         ret void