From: Owen Anderson Date: Thu, 1 Jun 2006 06:07:40 +0000 (+0000) Subject: Remove a FIXME that was fixed with my last patch. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ff99366919b5909ab0ae2df6495e5de2044b938d;p=oota-llvm.git Remove a FIXME that was fixed with my last patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28619 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index aa52235bc5c..e23c440e91f 100644 --- a/lib/Transforms/Utils/LCSSA.cpp +++ b/lib/Transforms/Utils/LCSSA.cpp @@ -204,8 +204,6 @@ void LCSSA::processInstruction(Instruction* Instr, II != IE; ++II) { if (PHINode* phi = dyn_cast(*II)) { for (unsigned int i = 0; i < phi->getNumIncomingValues(); ++i) { - // FIXME: Replace a Phi entry if and only if the corresponding - // predecessor is dominated. Instruction* dominator = getValueDominatingBlock(phi->getIncomingBlock(i), Phis);