Added debug output for inherited passes that are invalidated.

llvm-svn: 90553
This commit is contained in:
Andreas Neustifter 2009-12-04 06:58:24 +00:00
parent 9e539d17d4
commit c427ec12c0

View File

@ -738,9 +738,15 @@ void PMDataManager::removeNotPreservedAnalysis(Pass *P) {
std::map<AnalysisID, Pass *>::iterator Info = I++;
if (!dynamic_cast<ImmutablePass*>(Info->second) &&
std::find(PreservedSet.begin(), PreservedSet.end(), Info->first) ==
PreservedSet.end())
PreservedSet.end()) {
// Remove this analysis
if (PassDebugging >= Details) {
Pass *S = Info->second;
errs() << " -- '" << P->getPassName() << "' is not preserving '";
errs() << S->getPassName() << "'\n";
}
InheritedAnalysis[Index]->erase(Info);
}
}
}
}