[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / LoopVectorize / metadata-width.ll
blob455a4e1953fd47ba02ed40484c743918133f6f1e
1 ; RUN: opt < %s  -loop-vectorize -force-vector-interleave=1 -dce -instcombine -S | FileCheck %s
3 target 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"
5 ; CHECK-LABEL: @test1(
6 ; CHECK: store <8 x i32>
7 ; CHECK: ret void
8 define void @test1(i32* nocapture %a, i32 %n) #0 {
9 entry:
10   %cmp4 = icmp sgt i32 %n, 0
11   br i1 %cmp4, label %for.body, label %for.end
13 for.body:                                         ; preds = %entry, %for.body
14   %indvars.iv = phi i64 [ %indvars.iv.next, %for.body ], [ 0, %entry ]
15   %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv
16   %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
23 for.end:                                          ; preds = %for.body, %entry
24   ret void
27 attributes #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" }
29 !0 = !{!0, !1}
30 !1 = !{!"llvm.loop.vectorize.width", i32 8}