2003-03-05 21:34:35 +00:00
|
|
|
; Test merging of blocks that only have PHI nodes in them. This tests the case
|
|
|
|
; where the mergedinto block doesn't have any PHI nodes, and is in fact
|
|
|
|
; dominated by the block-to-be-eliminated
|
|
|
|
;
|
2009-09-11 18:01:28 +00:00
|
|
|
; RUN: opt < %s -simplifycfg -S | not grep N:
|
2003-03-05 21:34:35 +00:00
|
|
|
;
|
|
|
|
|
2008-03-11 21:47:57 +00:00
|
|
|
declare i1 @foo()
|
|
|
|
|
2008-03-11 02:19:59 +00:00
|
|
|
define i32 @test(i1 %a, i1 %b) {
|
2008-03-11 21:47:57 +00:00
|
|
|
%c = call i1 @foo()
|
|
|
|
br i1 %c, label %N, label %P
|
|
|
|
P:
|
|
|
|
%d = call i1 @foo()
|
|
|
|
br i1 %d, label %N, label %Q
|
2003-03-05 21:34:35 +00:00
|
|
|
Q:
|
|
|
|
br label %N
|
|
|
|
N:
|
2008-03-11 21:47:57 +00:00
|
|
|
%W = phi i32 [0, %0], [1, %Q], [2, %P]
|
2003-03-05 21:34:35 +00:00
|
|
|
; This block should be foldable into M
|
|
|
|
br label %M
|
|
|
|
|
|
|
|
M:
|
2008-03-11 02:19:59 +00:00
|
|
|
%R = add i32 %W, 1
|
|
|
|
ret i32 %R
|
2003-03-05 21:34:35 +00:00
|
|
|
}
|
|
|
|
|