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 | 5ac3f96c0e4a1f6b8253aabf74fe30b0439e9bdf (patch) | |
tree | 3e8ea540205b852fcc546229849e63f0a35b7611 /lib/Analysis | |
parent | 16436dffb50fac4677c7162639f8da0b73eb4e99 (diff) | |
download | external_llvm-5ac3f96c0e4a1f6b8253aabf74fe30b0439e9bdf.zip external_llvm-5ac3f96c0e4a1f6b8253aabf74fe30b0439e9bdf.tar.gz external_llvm-5ac3f96c0e4a1f6b8253aabf74fe30b0439e9bdf.tar.bz2 |
Remove unnecessary FIXME
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159182 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/LoopInfo.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 5d5f506..c5e5bbe 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/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"); |