mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
[PM] Cleanup more warnings my refactoring exposed where now we have
unused variables in a no-asserts build. I've fixed this by putting the entire loop behind an #ifndef as it contains nothing other than asserts. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226377 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
122e67cb34
commit
e81cec19db
@ -699,12 +699,14 @@ void LoopInfoWrapperPass::verifyAnalysis() const {
|
||||
}
|
||||
|
||||
// Verify that blocks are mapped to valid loops.
|
||||
#ifndef NDEBUG
|
||||
for (auto &Entry : LI.LI.BBMap) {
|
||||
BasicBlock *BB = Entry.first;
|
||||
Loop *L = Entry.second;
|
||||
assert(Loops.count(L) && "orphaned loop");
|
||||
assert(L->contains(BB) && "orphaned block");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void LoopInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user