aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-30 22:24:32 +0000
committerChris Lattner <sabre@nondot.org>2009-08-30 22:24:32 +0000
commitba263e5f1b2320558e3935bbfbdc10c6d581c19d (patch)
tree4f331c37e94586d0dd812e967845978ba63ec701 /include/llvm
parent72489759fa9fb63fdfa9f2e363222f0c45bf1340 (diff)
downloadexternal_llvm-ba263e5f1b2320558e3935bbfbdc10c6d581c19d.zip
external_llvm-ba263e5f1b2320558e3935bbfbdc10c6d581c19d.tar.gz
external_llvm-ba263e5f1b2320558e3935bbfbdc10c6d581c19d.tar.bz2
add a dump() method on callgraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/CallGraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/CallGraph.h b/include/llvm/Analysis/CallGraph.h
index c36cb22..f405f63 100644
--- a/include/llvm/Analysis/CallGraph.h
+++ b/include/llvm/Analysis/CallGraph.h
@@ -156,7 +156,7 @@ public:
void initialize(Module &M);
void print(raw_ostream &o, Module *) const;
-
+ void dump() const;
protected:
// destroy - Release memory for the call graph
virtual void destroy();