diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index aa52235bc5c2..e23c440e91fc 100644 --- a/llvm/lib/Transforms/Utils/LCSSA.cpp +++ b/llvm/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);