blob: a829e030e21d0f3216c6d32f73d68d7f9fa4828a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
; Test CFG simplify removal of branch instructions...
;
; RUN: opt < %s -simplifycfg -S | not grep br
define void @test1() {
br label %BB1
BB1: ; preds = %0
ret void
}
define void @test2() {
ret void
BB1: ; No predecessors!
ret void
}
define void @test3(i1 %T) {
br i1 %T, label %BB1, label %BB1
BB1: ; preds = %0, %0
ret void
}
define void @test4() {
entry:
br label %return
return:
ret void
}
@test4g = global i8* blockaddress(@test4, %return)
|