llvm-for-llvmta/test/Transforms/SimplifyCFG/BrUnwind.ll

16 lines
414 B
LLVM
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
; RUN: opt < %s -simplifycfg -simplifycfg-require-and-preserve-domtree=1 -hoist-common-insts=true -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
}