2008-03-18 03:45:45 +00:00
|
|
|
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
|
2004-04-09 23:50:29 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test(i1 %C, i32 %V1, i32 %V2) {
|
2004-04-09 23:50:29 +00:00
|
|
|
entry:
|
2008-03-18 03:45:45 +00:00
|
|
|
br i1 %C, label %then, label %Cont
|
|
|
|
then: ; preds = %entry
|
|
|
|
%V3 = or i32 %V2, %V1 ; <i32> [#uses=1]
|
2004-04-09 23:50:29 +00:00
|
|
|
br label %Cont
|
2008-03-18 03:45:45 +00:00
|
|
|
Cont: ; preds = %then, %entry
|
|
|
|
%V4 = phi i32 [ %V1, %entry ], [ %V3, %then ] ; <i32> [#uses=0]
|
|
|
|
call i32 @test( i1 false, i32 0, i32 0 ) ; <i32>:0 [#uses=0]
|
|
|
|
ret i32 %V1
|
2004-04-09 23:50:29 +00:00
|
|
|
}
|
|
|
|
|