e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
16 lines
345 B
LLVM
16 lines
345 B
LLVM
; RUN: opt < %s -simplifycfg -S | \
|
|
; RUN: not grep "br label"
|
|
|
|
define void @test(i1 %C) {
|
|
br i1 %C, label %A, label %B
|
|
A: ; preds = %0
|
|
call void @test( i1 %C )
|
|
br label %X
|
|
B: ; preds = %0
|
|
call void @test( i1 %C )
|
|
br label %X
|
|
X: ; preds = %B, %A
|
|
ret void
|
|
}
|
|
|