1*cee313d2SEric Christopher; RUN: opt < %s -loop-reduce -S | grep mul | count 1 2*cee313d2SEric Christopher; LSR should not make two copies of the Q*L expression in the preheader! 3*cee313d2SEric Christopher 4*cee313d2SEric Christopherdefine i8 @test(i8* %A, i8* %B, i32 %L, i32 %Q, i32 %N.s) { 5*cee313d2SEric Christopherentry: 6*cee313d2SEric Christopher %tmp.6 = mul i32 %Q, %L ; <i32> [#uses=1] 7*cee313d2SEric Christopher %N = bitcast i32 %N.s to i32 ; <i32> [#uses=1] 8*cee313d2SEric Christopher br label %no_exit 9*cee313d2SEric Christopherno_exit: ; preds = %no_exit, %entry 10*cee313d2SEric Christopher %indvar.ui = phi i32 [ 0, %entry ], [ %indvar.next, %no_exit ] ; <i32> [#uses=2] 11*cee313d2SEric Christopher %Sum.0.0 = phi i8 [ 0, %entry ], [ %tmp.21, %no_exit ] ; <i8> [#uses=1] 12*cee313d2SEric Christopher %indvar = bitcast i32 %indvar.ui to i32 ; <i32> [#uses=1] 13*cee313d2SEric Christopher %N_addr.0.0 = sub i32 %N.s, %indvar ; <i32> [#uses=1] 14*cee313d2SEric Christopher %tmp.8 = add i32 %N_addr.0.0, %tmp.6 ; <i32> [#uses=2] 15*cee313d2SEric Christopher %tmp.9 = getelementptr i8, i8* %A, i32 %tmp.8 ; <i8*> [#uses=1] 16*cee313d2SEric Christopher %tmp.10 = load i8, i8* %tmp.9 ; <i8> [#uses=1] 17*cee313d2SEric Christopher %tmp.17 = getelementptr i8, i8* %B, i32 %tmp.8 ; <i8*> [#uses=1] 18*cee313d2SEric Christopher %tmp.18 = load i8, i8* %tmp.17 ; <i8> [#uses=1] 19*cee313d2SEric Christopher %tmp.19 = sub i8 %tmp.10, %tmp.18 ; <i8> [#uses=1] 20*cee313d2SEric Christopher %tmp.21 = add i8 %tmp.19, %Sum.0.0 ; <i8> [#uses=2] 21*cee313d2SEric Christopher %indvar.next = add i32 %indvar.ui, 1 ; <i32> [#uses=2] 22*cee313d2SEric Christopher %exitcond = icmp eq i32 %indvar.next, %N ; <i1> [#uses=1] 23*cee313d2SEric Christopher br i1 %exitcond, label %loopexit, label %no_exit 24*cee313d2SEric Christopherloopexit: ; preds = %no_exit 25*cee313d2SEric Christopher ret i8 %tmp.21 26*cee313d2SEric Christopher} 27*cee313d2SEric Christopher 28