[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / IndVarSimplify / pr25578.ll
blobb9d374a4c772f71b1a1ab77e59c9f9582d06d4a1
1 ; RUN: opt < %s -indvars -S | FileCheck %s
2 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
4 declare void @use(i64 %x)
6 ; CHECK-LABEL: @foo
7 define void @foo() {
8 entry:
9   br label %L1_header
11 L1_header:
12   br label %L2_header
14 ; CHECK: L2_header:
15 ; CHECK: %[[INDVAR:.*]] = phi i64
16 ; CHECK: %[[TRUNC:.*]] = trunc i64 %[[INDVAR]] to i32
17 L2_header:
18   %i = phi i32 [ 0, %L1_header ], [ %i_next, %L2_latch ]
19   %i_prom = sext i32 %i to i64
20   call void @use(i64 %i_prom)
21   br label %L3_header
23 L3_header:
24   br i1 undef, label %L3_latch, label %L2_exiting_1
26 L3_latch:
27   br i1 undef, label %L3_header, label %L2_exiting_2
29 L2_exiting_1:
30   br i1 undef, label %L2_latch, label %L1_latch
32 L2_exiting_2:
33   br i1 undef, label %L2_latch, label %L1_latch
35 L2_latch:
36   %i_next = add nsw i32 %i, 1
37   br label %L2_header
39 L1_latch:
40 ; CHECK: L1_latch:
41 ; CHECK: %i_lcssa = phi i32 [ %[[TRUNC]], %L2_exiting_1 ], [ %[[TRUNC]], %L2_exiting_2 ]
43   %i_lcssa = phi i32 [ %i, %L2_exiting_1 ], [ %i, %L2_exiting_2 ]
44   br i1 undef, label %exit, label %L1_header
46 exit:
47   ret void