diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-07 21:41:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-07 21:41:11 +0000 |
commit | 221c97974cd57845f56859755ac31cd0c1fd2a62 (patch) | |
tree | 809d9521660d5bf5fd8c6fc28de2ad09b32ed64c /lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | 13c476cbd1b3317973d83b0d618730390afca8c1 (diff) |
Minor changes to DEBUG()'s
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index 561e857f63..ca6556d8ff 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -218,8 +218,9 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) { /*&& FIXME: NEED TO CHECK IF ALL CALLERS FOUND!*/); Graph->removeDeadNodes(/*KeepAllGlobals*/ false, /*KeepCalls*/ false); - DEBUG(std::cerr << " [TD] Done inlining callers for: " - << F.getName() << "\n"); + DEBUG(std::cerr << " [TD] Done inlining callers for: " << F.getName() << " [" + << Graph->getGraphSize() << "+" << Graph->getFunctionCalls().size() + << "]\n"); return *Graph; } |