mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
dac8bde235
around, then zap them. This is analogous to dangling constantexprs hanging off functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85627 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
534 B
LLVM
31 lines
534 B
LLVM
; 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)
|