blob: 009d1c8cc4da8a9e7be6f2445c822577ad9a717d [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; PR957
Dan Gohman3c7d3082009-09-11 18:01:28 +00002; RUN: opt < %s -simplifycfg -S | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003; RUN: not grep select
4
Chris Lattner2f62d902009-01-19 22:12:33 +00005@G = extern_weak global i32
6
Tanya Lattner003eae52008-03-10 07:21:50 +00007define i32 @test(i32 %tmp) {
8cond_false179:
9 %tmp181 = icmp eq i32 %tmp, 0 ; <i1> [#uses=1]
10 br i1 %tmp181, label %cond_true182, label %cond_next185
11cond_true182: ; preds = %cond_false179
12 br label %cond_next185
13cond_next185: ; preds = %cond_true182, %cond_false179
Chris Lattner2f62d902009-01-19 22:12:33 +000014 %d0.3 = phi i32 [ udiv (i32 1, i32 ptrtoint (i32* @G to i32)), %cond_true182 ], [ %tmp, %cond_false179 ] ; <i32> [#uses=1]
Tanya Lattner003eae52008-03-10 07:21:50 +000015 ret i32 %d0.3
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
17
Tanya Lattner003eae52008-03-10 07:21:50 +000018define i32 @test2(i32 %tmp) {
19cond_false179:
20 %tmp181 = icmp eq i32 %tmp, 0 ; <i1> [#uses=1]
21 br i1 %tmp181, label %cond_true182, label %cond_next185
22cond_true182: ; preds = %cond_false179
23 br label %cond_next185
24cond_next185: ; preds = %cond_true182, %cond_false179
Chris Lattner2f62d902009-01-19 22:12:33 +000025 %d0.3 = phi i32 [ udiv (i32 1, i32 ptrtoint (i32* @G to i32)), %cond_true182 ], [ %tmp, %cond_false179 ] ; <i32> [#uses=1]
Tanya Lattner003eae52008-03-10 07:21:50 +000026 call i32 @test( i32 4 ) ; <i32>:0 [#uses=0]
27 ret i32 %d0.3
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028}