llvm-6502/test/Transforms/SimplifyCFG/two-entry-phi-return.ll
Dan Gohman 882d87d168 Check to see if a two-entry PHI block can be simplified
before trying to merge the block into its predecessors.
This allows two-entry-phi-return.ll to be simplified
into a single basic block.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48252 91177308-0d34-0410-b5e6-96231b3b80d8
2008-03-11 21:53:06 +00:00

16 lines
404 B
LLVM

; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep br
define i1 @qux(i8* %m, i8* %n, i8* %o, i8* %p) nounwind {
entry:
%tmp7 = icmp eq i8* %m, %n
br i1 %tmp7, label %bb, label %UnifiedReturnBlock
bb:
%tmp15 = icmp eq i8* %o, %p
br label %UnifiedReturnBlock
UnifiedReturnBlock:
%result = phi i1 [ 0, %entry ], [ %tmp15, %bb ]
ret i1 %result
}