aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/two-entry-phi-return.ll
blob: fb18624c71f764a79c7108916b2d78474b7b018d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: opt < %s -simplifycfg -S | 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
}