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

declare void %bar()

void %test(int %X, int %Y) {
entry:
        %tmp.2 = setlt int %X, %Y               ; <bool> [#uses=2]
        br bool %tmp.2, label %shortcirc_next, label %UnifiedReturnBlock

shortcirc_next:         ; preds = %entry
        br bool %tmp.2, label %UnifiedReturnBlock, label %then

then:           ; preds = %shortcirc_next
        call void %bar( )
        ret void

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