Add flush

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4619 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-11-08 01:21:07 +00:00
parent 6f23963adc
commit 33312f7031
3 changed files with 20 additions and 29 deletions

View File

@ -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];