[InstCombine] Signed saturation tests. NFC
[llvm-complete.git] / test / Transforms / LoopDeletion / multiple-exit-conditions.ll
blobe7b47211d5702914e3fa2d850670b4df18ffeae0
1 ; RUN: opt < %s -loop-deletion -S | FileCheck %s
2 ; RUN: opt < %s -passes='loop(loop-deletion)' -S | FileCheck %s
4 ; ScalarEvolution can prove the loop iteration is finite, even though
5 ; it can't represent the exact trip count as an expression. That's
6 ; good enough to let the loop be deleted.
8 ; CHECK:      entry:
9 ; CHECK-NEXT:   br label %return
11 ; CHECK:      return:
12 ; CHECK-NEXT:   ret void
14 define void @foo(i64 %n, i64 %m) nounwind {
15 entry:
16   br label %bb
18 bb:
19   %x.0 = phi i64 [ 0, %entry ], [ %t0, %bb ]
20   %t0 = add i64 %x.0, 1
21   %t1 = icmp slt i64 %x.0, %n
22   %t3 = icmp sgt i64 %x.0, %m
23   %t4 = and i1 %t1, %t3
24   br i1 %t4, label %bb, label %return
26 return:
27   ret void