1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Remove a FIXME that was fixed with my last patch.

llvm-svn: 28619
This commit is contained in:
Owen Anderson 2006-06-01 06:07:40 +00:00
parent facd63d07c
commit 1b0cd45469

View File

@ -204,8 +204,6 @@ void LCSSA::processInstruction(Instruction* Instr,
II != IE; ++II) { II != IE; ++II) {
if (PHINode* phi = dyn_cast<PHINode>(*II)) { if (PHINode* phi = dyn_cast<PHINode>(*II)) {
for (unsigned int i = 0; i < phi->getNumIncomingValues(); ++i) { 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 = Instruction* dominator =
getValueDominatingBlock(phi->getIncomingBlock(i), Phis); getValueDominatingBlock(phi->getIncomingBlock(i), Phis);