1*cee313d2SEric Christopher; RUN: opt < %s  -loop-vectorize -force-vector-interleave=1 -force-vector-width=4 -dce -instcombine -S | FileCheck %s
2*cee313d2SEric Christopher
3*cee313d2SEric Christophertarget datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
4*cee313d2SEric Christopher
5*cee313d2SEric Christopher@a = common global [2048 x i32] zeroinitializer, align 16
6*cee313d2SEric Christopher@b = common global [2048 x i32] zeroinitializer, align 16
7*cee313d2SEric Christopher@c = common global [2048 x i32] zeroinitializer, align 16
8*cee313d2SEric Christopher
9*cee313d2SEric Christopher;CHECK-LABEL: @example1(
10*cee313d2SEric Christopher;CHECK: load <4 x i32>
11*cee313d2SEric Christopher;CHECK: ret void
12*cee313d2SEric Christopherdefine void @example1() nounwind uwtable ssp {
13*cee313d2SEric Christopher  br label %1
14*cee313d2SEric Christopher
15*cee313d2SEric Christopher; <label>:1                                       ; preds = %1, %0
16*cee313d2SEric Christopher  %indvars.iv = phi i64 [ 0, %0 ], [ %indvars.iv.next, %1 ]
17*cee313d2SEric Christopher  %2 = getelementptr inbounds [2048 x i32], [2048 x i32]* @b, i64 0, i64 %indvars.iv
18*cee313d2SEric Christopher  %3 = load i32, i32* %2, align 4
19*cee313d2SEric Christopher  %4 = getelementptr inbounds [2048 x i32], [2048 x i32]* @c, i64 0, i64 %indvars.iv
20*cee313d2SEric Christopher  %5 = load i32, i32* %4, align 4
21*cee313d2SEric Christopher  %6 = add nsw i32 %5, %3
22*cee313d2SEric Christopher  %7 = getelementptr inbounds [2048 x i32], [2048 x i32]* @a, i64 0, i64 %indvars.iv
23*cee313d2SEric Christopher  store i32 %6, i32* %7, align 4
24*cee313d2SEric Christopher  %indvars.iv.next = add i64 %indvars.iv, 1
25*cee313d2SEric Christopher  %lftr.wideiv = trunc i64 %indvars.iv.next to i32
26*cee313d2SEric Christopher  %exitcond = icmp eq i32 %lftr.wideiv, 8  ;   <-----  A really small trip count
27*cee313d2SEric Christopher  br i1 %exitcond, label %8, label %1      ;           w/o scalar iteration overhead.
28*cee313d2SEric Christopher
29*cee313d2SEric Christopher; <label>:8                                       ; preds = %1
30*cee313d2SEric Christopher  ret void
31*cee313d2SEric Christopher}
32*cee313d2SEric Christopher
33*cee313d2SEric Christopher;CHECK-LABEL: @bound1(
34*cee313d2SEric Christopher;CHECK-NOT: load <4 x i32>
35*cee313d2SEric Christopher;CHECK: ret void
36*cee313d2SEric Christopherdefine void @bound1(i32 %k) nounwind uwtable ssp {
37*cee313d2SEric Christopher  br label %1
38*cee313d2SEric Christopher
39*cee313d2SEric Christopher; <label>:1                                       ; preds = %1, %0
40*cee313d2SEric Christopher  %indvars.iv = phi i64 [ 0, %0 ], [ %indvars.iv.next, %1 ]
41*cee313d2SEric Christopher  %2 = getelementptr inbounds [2048 x i32], [2048 x i32]* @b, i64 0, i64 %indvars.iv
42*cee313d2SEric Christopher  %3 = load i32, i32* %2, align 4
43*cee313d2SEric Christopher  %4 = getelementptr inbounds [2048 x i32], [2048 x i32]* @c, i64 0, i64 %indvars.iv
44*cee313d2SEric Christopher  %5 = load i32, i32* %4, align 4
45*cee313d2SEric Christopher  %6 = add nsw i32 %5, %3
46*cee313d2SEric Christopher  %7 = getelementptr inbounds [2048 x i32], [2048 x i32]* @a, i64 0, i64 %indvars.iv
47*cee313d2SEric Christopher  store i32 %6, i32* %7, align 4
48*cee313d2SEric Christopher  %indvars.iv.next = add i64 %indvars.iv, 1
49*cee313d2SEric Christopher  %lftr.wideiv = trunc i64 %indvars.iv.next to i32
50*cee313d2SEric Christopher  %large = icmp sge i32 %lftr.wideiv, 8
51*cee313d2SEric Christopher  %exitcond = icmp eq i32 %lftr.wideiv, %k
52*cee313d2SEric Christopher  %realexit = or i1 %large, %exitcond
53*cee313d2SEric Christopher  br i1 %realexit, label %8, label %1
54*cee313d2SEric Christopher
55*cee313d2SEric Christopher; <label>:8                                       ; preds = %1
56*cee313d2SEric Christopher  ret void
57*cee313d2SEric Christopher}
58