2011-04-15 05:18:47 +00:00
|
|
|
; This is a basic sanity check for constant propagation. The add instruction
|
2002-05-07 20:32:19 +00:00
|
|
|
; should be eliminated.
|
|
|
|
|
2009-09-08 22:34:10 +00:00
|
|
|
; RUN: opt < %s -constprop -die -S | not grep phi
|
2002-05-07 20:32:19 +00:00
|
|
|
|
2008-03-01 09:15:35 +00:00
|
|
|
define i32 @test(i1 %B) {
|
2002-05-07 20:32:19 +00:00
|
|
|
BB0:
|
2008-03-01 09:15:35 +00:00
|
|
|
br i1 %B, label %BB1, label %BB3
|
|
|
|
|
|
|
|
BB1: ; preds = %BB0
|
|
|
|
br label %BB3
|
|
|
|
|
|
|
|
BB3: ; preds = %BB1, %BB0
|
|
|
|
%Ret = phi i32 [ 1, %BB0 ], [ 1, %BB1 ] ; <i32> [#uses=1]
|
|
|
|
ret i32 %Ret
|
2003-06-28 23:23:34 +00:00
|
|
|
}
|
2008-03-01 09:15:35 +00:00
|
|
|
|