aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/branch-fold.ll
blob: 266609b52a54ae638a390e245aabe4941d431e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: opt < %s -simplifycfg -S | grep {br i1} | count 1

define void @test(i32* %P, i32* %Q, i1 %A, i1 %B) {
        br i1 %A, label %a, label %b
a:              ; preds = %0
        br i1 %B, label %b, label %c
b:              ; preds = %a, %0
        store i32 123, i32* %P
        ret void
c:              ; preds = %a
        ret void
}