blob: 82fa5b2a40e1cee687251dabf1129d9db8544e7a [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -adce -simplifycfg -S | not grep then:
Chris Lattnerad0f4172003-06-24 21:22:09 +00002
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00003define void @dead_test8(i32* %data.1, i32 %idx.1) {
4entry:
5 %tmp.1 = load i32* %data.1 ; <i32> [#uses=2]
6 %tmp.41 = icmp sgt i32 %tmp.1, 0 ; <i1> [#uses=1]
7 br i1 %tmp.41, label %no_exit.preheader, label %return
Chris Lattnerad0f4172003-06-24 21:22:09 +00008
Tanya Lattnerec9a35a2008-03-01 09:15:35 +00009no_exit.preheader: ; preds = %entry
10 %tmp.11 = getelementptr i32* %data.1, i64 1 ; <i32*> [#uses=1]
11 %tmp.22-idxcast = sext i32 %idx.1 to i64 ; <i64> [#uses=1]
12 %tmp.28 = getelementptr i32* %data.1, i64 %tmp.22-idxcast ; <i32*> [#uses=1]
13 br label %no_exit
Chris Lattnerad0f4172003-06-24 21:22:09 +000014
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000015no_exit: ; preds = %endif, %no_exit.preheader
16 %k.1 = phi i32 [ %k.0, %endif ], [ 0, %no_exit.preheader ] ; <i32> [#uses=3]
17 %i.0 = phi i32 [ %inc.1, %endif ], [ 0, %no_exit.preheader ] ; <i32> [#uses=1]
18 %tmp.12 = load i32* %tmp.11 ; <i32> [#uses=1]
19 %tmp.14 = sub i32 0, %tmp.12 ; <i32> [#uses=1]
20 %tmp.161 = icmp ne i32 %k.1, %tmp.14 ; <i1> [#uses=1]
21 br i1 %tmp.161, label %then, label %else
Chris Lattnerad0f4172003-06-24 21:22:09 +000022
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000023then: ; preds = %no_exit
24 %inc.0 = add i32 %k.1, 1 ; <i32> [#uses=1]
25 br label %endif
Chris Lattnerad0f4172003-06-24 21:22:09 +000026
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000027else: ; preds = %no_exit
28 %dec = add i32 %k.1, -1 ; <i32> [#uses=1]
29 br label %endif
Chris Lattnerad0f4172003-06-24 21:22:09 +000030
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000031endif: ; preds = %else, %then
32 %k.0 = phi i32 [ %dec, %else ], [ %inc.0, %then ] ; <i32> [#uses=1]
33 store i32 2, i32* %tmp.28
34 %inc.1 = add i32 %i.0, 1 ; <i32> [#uses=2]
35 %tmp.4 = icmp slt i32 %inc.1, %tmp.1 ; <i1> [#uses=1]
36 br i1 %tmp.4, label %no_exit, label %return
Chris Lattnerad0f4172003-06-24 21:22:09 +000037
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000038return: ; preds = %endif, %entry
39 ret void
Chris Lattnerad0f4172003-06-24 21:22:09 +000040}
Tanya Lattnerec9a35a2008-03-01 09:15:35 +000041