1da450240SArthur Eubanks; New PM does not allow a pass to require another pass to have been run 2da450240SArthur Eubanks; RUN: opt -passes=loop-simplify,loop-load-elim -S < %s | FileCheck %s 3cee313d2SEric Christopher 4da450240SArthur Eubanks; Make sure we create a preheader if we don't have one. 5cee313d2SEric Christopher 6cee313d2SEric Christophertarget datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" 7cee313d2SEric Christopher 8*055fb779SNikita Popovdefine void @f(ptr noalias nocapture %A, ptr noalias nocapture readonly %B, i64 %N, i1 %C) { 9cee313d2SEric Christopherentry: 10cee313d2SEric Christopher br i1 %C, label %for.body, label %for.end 11cee313d2SEric Christopher 12cee313d2SEric Christopher; CHECK: for.body.preheader: 13*055fb779SNikita Popov; CHECK-NEXT: %load_initial = load i32, ptr %A 14cee313d2SEric Christopher; CHECK-NEXT: br label %for.body 15cee313d2SEric Christopher 16cee313d2SEric Christopher; CHECK: for.body: 17cee313d2SEric Christopherfor.body: 18cee313d2SEric Christopher; CHECK-NEXT: %store_forwarded = phi i32 [ %load_initial, %for.body.preheader ], [ %add, %for.body ] 19cee313d2SEric Christopher %indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ] 20*055fb779SNikita Popov %arrayidx = getelementptr inbounds i32, ptr %A, i64 %indvars.iv 21*055fb779SNikita Popov %load = load i32, ptr %arrayidx, align 4 22*055fb779SNikita Popov %arrayidx2 = getelementptr inbounds i32, ptr %B, i64 %indvars.iv 23*055fb779SNikita Popov %load_1 = load i32, ptr %arrayidx2, align 4 24cee313d2SEric Christopher; CHECK: %add = add i32 %load_1, %store_forwarded 25cee313d2SEric Christopher %add = add i32 %load_1, %load 26cee313d2SEric Christopher %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1 27*055fb779SNikita Popov %arrayidx_next = getelementptr inbounds i32, ptr %A, i64 %indvars.iv.next 28*055fb779SNikita Popov store i32 %add, ptr %arrayidx_next, align 4 29cee313d2SEric Christopher %exitcond = icmp eq i64 %indvars.iv.next, %N 30cee313d2SEric Christopher br i1 %exitcond, label %for.end, label %for.body 31cee313d2SEric Christopher 32cee313d2SEric Christopherfor.end: 33cee313d2SEric Christopher ret void 34cee313d2SEric Christopher} 35