mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60653 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1102,7 +1102,6 @@ static bool FoldCondBranchOnPHI(BranchInst *BI) {
|
|||||||
// Degenerate case of a single entry PHI.
|
// Degenerate case of a single entry PHI.
|
||||||
if (PN->getNumIncomingValues() == 1) {
|
if (PN->getNumIncomingValues() == 1) {
|
||||||
FoldSingleEntryPHINodes(PN->getParent());
|
FoldSingleEntryPHINodes(PN->getParent());
|
||||||
PN->eraseFromParent();
|
|
||||||
return true;
|
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
|
||||||
|
}
|
Reference in New Issue
Block a user