blob: 4cb56ca9ed245f2fff96d7b63a2a0ec39c852165 [file] [log] [blame]
Dan Gohman0a063102009-09-08 23:54:48 +00001; RUN: llc < %s -march=x86 -relocation-model=static | \
Dale Johannesen64660e92008-12-05 21:47:27 +00002; RUN: grep {A+} | count 2
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003;
Dale Johannesen64660e92008-12-05 21:47:27 +00004; Make sure the common loop invariant A is not hoisted up to preheader,
5; since it can be subsumed into the addressing mode in all uses.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00006
Tanya Lattner632e88a2008-02-21 07:42:26 +00007@A = internal global [16 x [16 x i32]] zeroinitializer, align 32 ; <[16 x [16 x i32]]*> [#uses=2]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008
Chris Lattnerd7a84f32008-11-26 00:03:26 +00009define void @test(i32 %row, i32 %N.in) nounwind {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010entry:
Tanya Lattner632e88a2008-02-21 07:42:26 +000011 %N = bitcast i32 %N.in to i32 ; <i32> [#uses=1]
12 %tmp5 = icmp sgt i32 %N.in, 0 ; <i1> [#uses=1]
13 br i1 %tmp5, label %cond_true, label %return
Dan Gohmanf17a25c2007-07-18 16:29:46 +000014
Tanya Lattner632e88a2008-02-21 07:42:26 +000015cond_true: ; preds = %cond_true, %entry
16 %indvar = phi i32 [ 0, %entry ], [ %indvar.next, %cond_true ] ; <i32> [#uses=2]
17 %i.0.0 = bitcast i32 %indvar to i32 ; <i32> [#uses=2]
18 %tmp2 = add i32 %i.0.0, 1 ; <i32> [#uses=1]
19 %tmp = getelementptr [16 x [16 x i32]]* @A, i32 0, i32 %row, i32 %tmp2 ; <i32*> [#uses=1]
20 store i32 4, i32* %tmp
21 %tmp5.upgrd.1 = add i32 %i.0.0, 2 ; <i32> [#uses=1]
22 %tmp7 = getelementptr [16 x [16 x i32]]* @A, i32 0, i32 %row, i32 %tmp5.upgrd.1 ; <i32*> [#uses=1]
23 store i32 5, i32* %tmp7
24 %indvar.next = add i32 %indvar, 1 ; <i32> [#uses=2]
25 %exitcond = icmp eq i32 %indvar.next, %N ; <i1> [#uses=1]
26 br i1 %exitcond, label %return, label %cond_true
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
Tanya Lattner632e88a2008-02-21 07:42:26 +000028return: ; preds = %cond_true, %entry
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029 ret void
30}