[RISCV] Change func to funct in RISCVInstrInfoXqci.td. NFC (#119669)
[llvm-project.git] / llvm / test / Analysis / ScalarEvolution / how-far-to-zero.ll
blobf0328d1d70674222c828b115a1350c449308e552
1 ; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" 2>&1 | FileCheck %s
3 ; PR13228
4 define void @f(i1 %arg) nounwind uwtable readnone {
5 entry:
6   br label %for.cond
8 for.cond:                                         ; preds = %for.cond, %entry
9   %c.0 = phi i8 [ 1, %entry ], [ 0, %for.cond ]
10   %i.0 = phi i8 [ 0, %entry ], [ %inc, %for.cond ]
11   %lnot = icmp eq i8 %i.0, 0
12   %inc = add i8 %i.0, 1
13   br i1 %lnot, label %for.cond, label %while.cond
15 while.cond:                                       ; preds = %while.body, %for.cond
16   %b.2 = phi i8 [ %add, %while.body ], [ 0, %for.cond ]
17   br i1 %arg, label %while.end, label %while.body
19 while.body:                                       ; preds = %while.cond
20   %add = add i8 %b.2, %c.0
21   %tobool7 = icmp eq i8 %add, 0
22   br i1 %tobool7, label %while.end, label %while.cond
24 while.end:                                        ; preds = %while.body, %while.cond
25   ret void
27 ;CHECK: Loop %while.cond: <multiple exits> Unpredictable backedge-taken count.