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 | 619e4ba57f2f2d56f08ac587761c3c8745cf3f8e (patch) | |
tree | ec435ed2aa8f6c7e70bad5f502d385334f043059 /llvm/lib/Transforms/Utils/LCSSA.cpp | |
parent | cd76fa04a1c402b6b9ff6e763ea1a958acb5c531 (diff) | |
download | bcm5719-llvm-619e4ba57f2f2d56f08ac587761c3c8745cf3f8e.tar.gz bcm5719-llvm-619e4ba57f2f2d56f08ac587761c3c8745cf3f8e.zip |
Remove a FIXME that was fixed with my last patch.
llvm-svn: 28619
Diffstat (limited to 'llvm/lib/Transforms/Utils/LCSSA.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LCSSA.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index aa52235bc5c..e23c440e91f 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<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); |