diff options
author | Andrew Trick <atrick@apple.com> | 2012-06-26 04:11:34 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-06-26 04:11:34 +0000 |
commit | fecf9379383e43457047fb6d5ef497a63ba486e0 (patch) | |
tree | 247d7c59f4399d927c9e41bdea505985cfb1452b /llvm/lib/Analysis/LoopInfo.cpp | |
parent | 389512dc5ef12af9652b7af467f6bb960a959170 (diff) | |
download | bcm5719-llvm-fecf9379383e43457047fb6d5ef497a63ba486e0.tar.gz bcm5719-llvm-fecf9379383e43457047fb6d5ef497a63ba486e0.zip |
Remove unnecessary FIXME
llvm-svn: 159182
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 5d5f5066b30..c5e5bbe266d 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -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"); |