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
This commit is contained in:
Owen Anderson 2006-06-01 06:07:40 +00:00
parent 2824da4738
commit ff99366919

View 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);