blob: dc0f702bcd96884becda5325ddaf737086cff748 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; This is a basic sanity check for constant propogation. The add instruction
2; should be eliminated.
3
Dan Gohman3c7d3082009-09-11 18:01:28 +00004; RUN: opt < %s -sccp -S | not grep add
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005
Tanya Lattnerba93e2d2008-03-19 04:14:49 +00006define i32 @test(i1 %B) {
7 br i1 %B, label %BB1, label %BB2
8BB1: ; preds = %0
9 %Val = add i32 0, 0 ; <i32> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010 br label %BB3
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000011BB2: ; preds = %0
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012 br label %BB3
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000013BB3: ; preds = %BB2, %BB1
14 %Ret = phi i32 [ %Val, %BB1 ], [ 1, %BB2 ] ; <i32> [#uses=1]
15 ret i32 %Ret
Dan Gohmanf17a25c2007-07-18 16:29:46 +000016}
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000017