1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/SimplifyCFG/PhiBlockMerge2.ll

28 lines
568 B
LLVM
Raw Normal View History

2003-03-05 22:34:35 +01: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
;
; RUN: opt < %s -simplifycfg -S | not grep N:
2003-03-05 22:34:35 +01:00
;
declare i1 @foo()
2008-03-11 03:19:59 +01:00
define i32 @test(i1 %a, i1 %b) {
%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 22:34:35 +01:00
Q:
br label %N
N:
%W = phi i32 [0, %0], [1, %Q], [2, %P]
2003-03-05 22:34:35 +01:00
; This block should be foldable into M
br label %M
M:
2008-03-11 03:19:59 +01:00
%R = add i32 %W, 1
ret i32 %R
2003-03-05 22:34:35 +01:00
}