From: Chris Lattner Date: Wed, 8 Oct 2003 16:56:11 +0000 (+0000) Subject: Update comment X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=929c6fbcbc12fdf2826b223a9171d25bd0fc1748;p=oota-llvm.git Update comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8965 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index 48c116d5f35..3effa66eefe 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -170,8 +170,8 @@ private: << " -> " << Dest->getName() << "\n"); // The destination is already executable, but we just made an edge - // feasible that wasn't before. Add the PHI nodes to the work list so - // that they can be rechecked. + // feasible that wasn't before. Revisit the PHI nodes in the block + // because they have potentially new operands. for (BasicBlock::iterator I = Dest->begin(); PHINode *PN = dyn_cast(I); ++I) visitPHINode(*PN);