2002-05-07 22:32:19 +02:00
|
|
|
; This is a basic sanity check for constant propogation. The add instruction
|
|
|
|
; should be eliminated.
|
|
|
|
|
2009-09-09 00:34:10 +02:00
|
|
|
; RUN: opt < %s -constprop -die -S | not grep phi
|
2002-05-07 22:32:19 +02:00
|
|
|
|
2008-03-01 10:15:35 +01:00
|
|
|
define i32 @test(i1 %B) {
|
2002-05-07 22:32:19 +02:00
|
|
|
BB0:
|
2008-03-01 10:15:35 +01: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-29 01:23:34 +02:00
|
|
|
}
|
2008-03-01 10:15:35 +01:00
|
|
|
|