| ; RUN: opt -loop-unroll -unroll-count=2 -S < %s | FileCheck %s |
| ; Check that the disable_nonforced loop property is honored by |
| target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" |
| ; CHECK-LABEL: @disable_nonforced( |
| define void @disable_nonforced(i32* nocapture %a) { |
| %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ] |
| %arrayidx = getelementptr inbounds i32, i32* %a, i64 %indvars.iv |
| %0 = load i32, i32* %arrayidx, align 4 |
| store i32 %inc, i32* %arrayidx, align 4 |
| %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1 |
| %exitcond = icmp eq i64 %indvars.iv.next, 64 |
| br i1 %exitcond, label %for.end, label %for.body, !llvm.loop !0 |
| !0 = !{!0, !{!"llvm.loop.disable_nonforced"}} |