Remove unnecessary FIXME
authorAndrew Trick <atrick@apple.com>
Tue, 26 Jun 2012 04:11:34 +0000 (04:11 +0000)
committerAndrew Trick <atrick@apple.com>
Tue, 26 Jun 2012 04:11:34 +0000 (04:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159182 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LoopInfo.cpp

index 5d5f5066b30651b64f162c3deff0131c5c9cd742..c5e5bbe266d29ef2384fe0d96eb55ec957a5cf84 100644 (file)
@@ -601,9 +601,6 @@ void LoopInfo::verifyAnalysis() const {
   }
 
   // Verify that blocks are mapped to valid loops.
-  //
-  // FIXME: With an up-to-date DFS (see LoopIterator.h) and DominatorTree, we
-  // could also verify that the blocks are still in the correct loops.
   for (DenseMap<BasicBlock*, Loop*>::const_iterator I = LI.BBMap.begin(),
          E = LI.BBMap.end(); I != E; ++I) {
     assert(Loops.count(I->second) && "orphaned loop");