[IRBuilder] Add Align argument for CreateMaskedExpandLoad and CreateMaskedCompressSto...
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / hints-trans.ll
blob3c7ef44f1d340aec9f1751214e4695e5aa4e92e8
1 ; RUN: opt -S -passes=loop-vectorize,instsimplify,simplifycfg -force-vector-interleave=1 -force-vector-width=4 -simplifycfg-require-and-preserve-domtree=1 < %s | FileCheck %s
2 ; Note: -passes=instsimplify,simplifycfg -simplifycfg-require-and-preserve-domtree=1 remove the (now dead) original loop, making
3 ; it easy to test that the llvm.loop.unroll.disable hint is still present.
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 ; Function Attrs: norecurse nounwind uwtable
7 define void @foo(ptr nocapture %b) #0 {
8 entry:
9   br label %for.body
11 for.cond.cleanup:                                 ; preds = %for.body
12   ret void
14 for.body:                                         ; preds = %for.body, %entry
15   %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
16   %arrayidx = getelementptr inbounds i32, ptr %b, i64 %indvars.iv
17   store i32 1, ptr %arrayidx, align 4
18   %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
19   %exitcond = icmp eq i64 %indvars.iv.next, 16
20   br i1 %exitcond, label %for.cond.cleanup, label %for.body, !llvm.loop !0
23 ; CHECK-LABEL: @foo
24 ; CHECK: = !{!"llvm.loop.unroll.disable"}
26 attributes #0 = { norecurse nounwind uwtable }
28 !0 = distinct !{!0, !1}
29 !1 = !{!"llvm.loop.unroll.disable"}