Remove debug output that snuck into 254957

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254960 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Philip Reames 2015-12-07 22:43:56 +00:00
parent 0890b95b60
commit ba40ae0275

View File

@ -589,12 +589,6 @@ AnalysisUsage *PMTopLevelManager::findAnalysisUsage(Pass *P) {
if (auto *N = UniqueAnalysisUsages.FindNodeOrInsertPos(ID, IP))
Node = N;
else {
#if 0
dbgs() << AU.getRequiredSet().size() << " "
<< AU.getRequiredTransitiveSet().size() << " "
<< AU.getPreservedSet().size() << " "
<< AU.getUsedSet().size() << "\n";
#endif
Node = new (AUFoldingSetNodeAllocator.Allocate()) AUFoldingSetNode(AU);
UniqueAnalysisUsages.InsertNode(Node, IP);
}