1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

fix a bug I introduced in simplifycfg handling single entry phi

nodes. FoldSingleEntryPHINodes deletes the PHI, so there is no
need to delete it afterward.

llvm-svn: 60653
This commit is contained in:
Chris Lattner 2008-12-07 07:22:45 +00:00
parent a5f2ce1ee3
commit a79a341f1e
2 changed files with 13 additions and 1 deletions

View File

@ -1102,7 +1102,6 @@ static bool FoldCondBranchOnPHI(BranchInst *BI) {
// Degenerate case of a single entry PHI.
if (PN->getNumIncomingValues() == 1) {
FoldSingleEntryPHINodes(PN->getParent());
PN->eraseFromParent();
return true;
}

View File

@ -0,0 +1,13 @@
; 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
}