hanchenye-llvm-project/llvm/test/Transforms/SimplifyCFG/2008-12-06-SingleEntryPhi.ll

14 lines
188 B
LLVM

; RUN: opt < %s -simplifycfg | llvm-dis
define i32 @test() {
entry:
br label %T
T:
%C = phi i1 [false, %entry]
br i1 %C, label %X, label %Y
X:
ret i32 2
Y:
add i32 1, 2
ret i32 1
}