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:
parent
a5f2ce1ee3
commit
a79a341f1e
@ -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;
|
||||
}
|
||||
|
||||
|
13
test/Transforms/SimplifyCFG/2008-12-06-SingleEntryPhi.ll
Normal file
13
test/Transforms/SimplifyCFG/2008-12-06-SingleEntryPhi.ll
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user