Remove unnecessary FIXME
[oota-llvm.git] / 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");