From: Chris Lattner Date: Tue, 8 Oct 2002 17:07:39 +0000 (+0000) Subject: It is illegal for PHI nodes to have zero values, delete the code to handle them X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=57b314cfb1b342e1add74fa2d160db5ff91c89fb;p=oota-llvm.git It is illegal for PHI nodes to have zero values, delete the code to handle them git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4071 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index f0e639742dc..74a1496bfac 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -630,8 +630,6 @@ Instruction *InstCombiner::visitCastInst(CastInst &CI) { // Instruction *InstCombiner::visitPHINode(PHINode &PN) { // If the PHI node only has one incoming value, eliminate the PHI node... - if (PN.getNumIncomingValues() == 0) - return ReplaceInstUsesWith(PN, Constant::getNullValue(PN.getType())); if (PN.getNumIncomingValues() == 1) return ReplaceInstUsesWith(PN, PN.getIncomingValue(0));