brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 1ec36e6 Raw
33 lines · plain
1; RUN: opt %loadNPMPolly '-passes=polly-custom<scops>' -polly-print-scops -disable-output < %s2 3; The load is a required invariant load and at the same time used in a store.4; Polly used to add two MemoryAccesses for it which caused an assertion to fail.5; llvm.org/PR480596 7target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"8target triple = "x86_64-pc-windows-msvc19.27.29112"9 10@b = external dso_local global i32, align 411@c = external dso_local global ptr, align 812@a = external dso_local local_unnamed_addr global ptr, align 813 14define void @func() {15for.cond1.preheader.preheader:16  br label %for.end1217 18for.end12:19  br i1 undef, label %for.end12.1, label %for.end1220 21for.end12.1:22  %0 = phi ptr [ %1, %for.end12.1 ], [ undef, %for.end12 ]23  %storemerge26.1 = phi i32 [ %inc14.1, %for.end12.1 ], [ 0, %for.end12 ]24  %1 = load ptr, ptr @c, align 825  store i32 0, ptr %1, align 426  %inc14.1 = add nuw nsw i32 %storemerge26.1, 127  %exitcond.1.not = icmp eq i32 %inc14.1, 3528  br i1 %exitcond.1.not, label %for.inc16.1, label %for.end12.129 30for.inc16.1:31  ret void32}33