aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyCFG/2002-05-05-EmptyBlockMerge.ll
blob: d4a2944ffb97c6650b314c8b71396994928e50e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
; Basic block #2 should be merged into BB #3!
;
; RUN: if as < %s | opt -dce | dis | grep 'br label'
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
;
void "cprop_test12"(int* %data) {
bb0:
        %reg108 = load int* %data
        %cond218 = setne int %reg108, 5
        br bool %cond218, label %bb3, label %bb2

bb2:
        br label %bb3

bb3:
        %reg117 = phi int [ 110, %bb2 ], [ %reg108, %bb0 ]
        store int %reg117, int* %data
        ret void
}