blob: 455a4e1953fd47ba02ed40484c743918133f6f1e [file] [log] [blame]
Sanjay Patelb653de12014-09-10 17:58:16 +00001; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -dce -instcombine -S | FileCheck %s
Paul Redmond5fdf8362013-05-28 20:00:34 +00002
3target 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"
Paul Redmond5fdf8362013-05-28 20:00:34 +00004
Stephen Linc1c7a132013-07-14 01:42:54 +00005; CHECK-LABEL: @test1(
Paul Redmond5fdf8362013-05-28 20:00:34 +00006; CHECK: store <8 x i32>
7; CHECK: ret void
8define void @test1(i32* nocapture %a, i32 %n) #0 {
9entry:
10 %cmp4 = icmp sgt i32 %n, 0
11 br i1 %cmp4, label %for.body, label %for.end
12
13for.body: ; preds = %entry, %for.body
14 %indvars.iv = phi i64 [ %indvars.iv.next, %for.body ], [ 0, %entry ]
David Blaikie79e6c742015-02-27 19:29:02 +000015 %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
Paul Redmond5fdf8362013-05-28 20:00:34 +000016 %0 = trunc i64 %indvars.iv to i32
17 store i32 %0, i32* %arrayidx, align 4
18 %indvars.iv.next = add i64 %indvars.iv, 1
19 %lftr.wideiv = trunc i64 %indvars.iv.next to i32
20 %exitcond = icmp eq i32 %lftr.wideiv, %n
21 br i1 %exitcond, label %for.end, label %for.body, !llvm.loop !0
22
23for.end: ; preds = %for.body, %entry
24 ret void
25}
26
27attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-frame-pointer-elim-non-leaf"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }
28
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000029!0 = !{!0, !1}
30!1 = !{!"llvm.loop.vectorize.width", i32 8}