Remove a FIXME that was fixed with my last patch.
authorOwen Anderson <resistor@mac.com>
Thu, 1 Jun 2006 06:07:40 +0000 (06:07 +0000)
committerOwen Anderson <resistor@mac.com>
Thu, 1 Jun 2006 06:07:40 +0000 (06:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28619 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LCSSA.cpp

index aa52235bc5c2d4e2194ed7fda1ddb7a64cacc33f..e23c440e91fcc4d2bec4cba195d93928139f3a80 100644 (file)
@@ -204,8 +204,6 @@ void LCSSA::processInstruction(Instruction* Instr,
        II != IE; ++II) {
     if (PHINode* phi = dyn_cast<PHINode>(*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);