summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/SimplifyCFG/branch-cond-merge.ll
blob: ca5f3e4ab44ae7d4598419dd398b0ea0ec9e0489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg -instcombine -simplifycfg | llvm-dis | not grep call

declare void %bar()

void %test(int %X, int %Y) {
entry:
        %tmp.2 = setne int %X, %Y
        br bool %tmp.2, label %shortcirc_next, label %UnifiedReturnBlock

shortcirc_next:
        %tmp.3 = setne int %X, %Y
        br bool %tmp.3, label %UnifiedReturnBlock, label %then

then:
        call void %bar( )
        ret void

UnifiedReturnBlock:             ; preds = %entry, %shortcirc_next
	ret void
}

OpenPOWER on IntegriCloud