mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
a79a341f1e
nodes. FoldSingleEntryPHINodes deletes the PHI, so there is no need to delete it afterward. llvm-svn: 60653
14 lines
198 B
LLVM
14 lines
198 B
LLVM
; RUN: llvm-as < %s | opt -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
|
|
}
|