[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LCSSA.cpp

Owen Anderson resistor at mac.com
Wed May 31 23:07:55 PDT 2006



Changes in directory llvm/lib/Transforms/Scalar:

LCSSA.cpp updated: 1.9 -> 1.10
---
Log message:

Remove a FIXME that was fixed with my last patch.


---
Diffs of the changes:  (+0 -2)

 LCSSA.cpp |    2 --
 1 files changed, 2 deletions(-)


Index: llvm/lib/Transforms/Scalar/LCSSA.cpp
diff -u llvm/lib/Transforms/Scalar/LCSSA.cpp:1.9 llvm/lib/Transforms/Scalar/LCSSA.cpp:1.10
--- llvm/lib/Transforms/Scalar/LCSSA.cpp:1.9	Thu Jun  1 01:05:47 2006
+++ llvm/lib/Transforms/Scalar/LCSSA.cpp	Thu Jun  1 01:07:40 2006
@@ -204,8 +204,6 @@
        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);
         






More information about the llvm-commits mailing list