aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/IPA/CallGraph.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-04 00:21:19 +0000
committerChris Lattner <sabre@nondot.org>2002-11-04 00:21:19 +0000
commit16500158223d4147ae97513bf698d5f321b15889 (patch)
treef1443b813c3025f07afe4ab083302490be7fe50b /lib/Analysis/IPA/CallGraph.cpp
parentc875f023d41f60efc79647e9c2dd44ab0c8c03ca (diff)
Allow the call graph to be called from analyze naturally with print implemented
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/IPA/CallGraph.cpp')
-rw-r--r--lib/Analysis/IPA/CallGraph.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp
index 5c4b5d81f7..2c26f8dbb2 100644
--- a/lib/Analysis/IPA/CallGraph.cpp
+++ b/lib/Analysis/IPA/CallGraph.cpp
@@ -130,8 +130,7 @@ void CallGraph::destroy() {
FunctionMap.clear();
}
-
-void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {
+static void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {
if (CGN->getFunction())
o << "Call graph node for function: '"
<< CGN->getFunction()->getName() <<"'\n";
@@ -146,11 +145,11 @@ void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {
o << "\n";
}
-void WriteToOutput(const CallGraph &CG, std::ostream &o) {
- o << "CallGraph Root is:\n" << CG.getRoot();
+void CallGraph::print(std::ostream &o, const Module *M) const {
+ o << "CallGraph Root is:\n" << getRoot();
- for (CallGraph::const_iterator I = CG.begin(), E = CG.end(); I != E; ++I)
- o << I->second;
+ for (CallGraph::const_iterator I = begin(), E = end(); I != E; ++I)
+ WriteToOutput(I->second, o);
}