diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-08 01:21:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-08 01:21:07 +0000 |
commit | 33312f7031058a2ea18c4648b70af9d96a00adc7 (patch) | |
tree | 21d73c91ef04565753bb747b66f246f98501b899 /lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | 6f23963adc8c3257ba3e4998d7894e147ca4b078 (diff) |
Add flush
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index a37ccd98fa..bc27b92ccd 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -138,7 +138,8 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) { // Loop over all call sites of this function, merging each one into this // graph. // - DEBUG(std::cerr << " [TD] Inlining callers for: " << F.getName() << "\n"); + DEBUG(std::cerr << " [TD] Inlining " << CallSitesP->size() + << " callers for: " << F.getName() << "\n"); const std::vector<DSCallSite> &CallSites = *CallSitesP; for (unsigned c = 0, ce = CallSites.size(); c != ce; ++c) { const DSCallSite &CallSite = CallSites[c]; |