diff options
author | Owen Anderson <resistor@mac.com> | 2006-06-01 06:07:40 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2006-06-01 06:07:40 +0000 |
commit | ff99366919b5909ab0ae2df6495e5de2044b938d (patch) | |
tree | ec6b23149f5032844556afec5174517669b6865b | |
parent | 2824da4738aba79a140ce77ccc918587ea9d534a (diff) |
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
-rw-r--r-- | lib/Transforms/Utils/LCSSA.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LCSSA.cpp b/lib/Transforms/Utils/LCSSA.cpp index aa52235bc5..e23c440e91 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<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); |