diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index b606c58d527..9c3610830e1 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -701,6 +701,9 @@ bool llvm::SimplifyCFG(BasicBlock *BB) { if (FVPN->getParent() == FalseSucc) FalseValue = FVPN->getIncomingValueForBlock(BI->getParent()); + TrueSucc->removePredecessor(BI->getParent()); + FalseSucc->removePredecessor(BI->getParent()); + // Insert a new select instruction. Value *NewRetVal = new SelectInst(BI->getCondition(), TrueValue, FalseValue, "retval", BI);