[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / IRCE / optimistic_scev.ll
blob5bb6019f4ecb5460a687b2d2ba5c9a052cf1e6b2
1 ; RUN: opt -verify-loop-info -irce-print-changed-loops -irce -S < %s 2>&1 | FileCheck %s
3 ; CHECK-LABEL: irce: in function test_01: constrained Loop at depth 2 containing:
5 define void @test_01(i64 %len) {
7 ; CHECK-LABEL: @test_01(
9 entry:
10   br label %loop
12 check:
13   %entry_check = icmp eq i32 %idx.next, 0
14   br i1 %entry_check, label %exit, label %loop
16 loop:
17   %idx = phi i32 [ 1, %entry ], [ %idx.next, %check ]
18   %idx_ext = sext i32 %idx to i64
19   br label %inner_loop
21 inner_loop:
22   %iv = phi i64 [ 0, %loop ], [ %iv.next, %inner_backedge ]
23   %iv.next = add nuw nsw i64 %iv, 1
24   %inner_check = icmp slt i64 %iv.next, %idx_ext
25   br i1 %inner_check, label %inner, label %outer_check
27 inner:
28   %iv_next_check = icmp slt i64 %iv.next, 100
29   br i1 %iv_next_check, label %inner_backedge, label %exit
31 inner_backedge:
32   %cond = icmp eq i64 %iv.next, 100
33   br i1 %cond, label %exit, label %inner_loop
35 outer_check:
36   %idx.next = add i32 %idx, 1
37   %loopdone = icmp slt i32 %idx.next, 2
38   br i1 %loopdone, label %check, label %exit
40 exit:
41   ret void