brintos

brintos / llvm-project-archived public Read only

0
0
Text · 935 B · ef26c72 Raw
33 lines · plain
1; RUN: opt -passes=loop-unroll -S < %s | FileCheck %s2;3; Check that the llvm.loop.unroll.full loop property overrides4; llvm.loop.disable_nonforced.5;6target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"7 8; CHECK-LABEL: @disable_nonforced_full(9; CHECK: store10; CHECK: store11; CHECK: store12; CHECK: store13; CHECK-NOT: store14define void @disable_nonforced_full(ptr nocapture %a) {15entry:16  br label %for.body17 18for.body:19  %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]20  %arrayidx = getelementptr inbounds i32, ptr %a, i64 %indvars.iv21  %0 = load i32, ptr %arrayidx, align 422  %inc = add nsw i32 %0, 123  store i32 %inc, ptr %arrayidx, align 424  %indvars.iv.next = add nuw nsw i64 %indvars.iv, 125  %exitcond = icmp eq i64 %indvars.iv.next, 426  br i1 %exitcond, label %for.end, label %for.body, !llvm.loop !027 28for.end:29  ret void30}31 32!0 = !{!0, !{!"llvm.loop.disable_nonforced"}, !{!"llvm.loop.unroll.full"}}33