diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-13 19:51:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-13 19:51:24 +0000 |
commit | 68c3caccb1c93db1a43deb3eed3059aa64165ceb (patch) | |
tree | 9c8a4ad02893e4dd6429282338bc32013f1783b3 /llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | |
parent | db98a9745a0265ffe15cab10a5faaa217b131295 (diff) | |
download | bcm5719-llvm-68c3caccb1c93db1a43deb3eed3059aa64165ceb.tar.gz bcm5719-llvm-68c3caccb1c93db1a43deb3eed3059aa64165ceb.zip |
ADd support for printing eqgraphs.
llvm-svn: 20582
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp index a1054e5baa3..a16d40fbe0f 100644 --- a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp +++ b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp @@ -29,7 +29,7 @@ using namespace llvm; namespace { - RegisterAnalysis<EquivClassGraphs> X("equivdatastructure", + RegisterAnalysis<EquivClassGraphs> X("eqdatastructure", "Equivalence-class Bottom-up Data Structure Analysis"); Statistic<> NumEquivBUInlines("equivdatastructures", "Number of graphs inlined"); @@ -58,7 +58,7 @@ static void CheckAllGraphs(Module *M, GT &ECGraphs) { // getSomeCalleeForCallSite - Return any one callee function at a call site. // -Function *EquivClassGraphs:: getSomeCalleeForCallSite(const CallSite &CS) const{ +Function *EquivClassGraphs::getSomeCalleeForCallSite(const CallSite &CS) const{ Function *thisFunc = CS.getCaller(); assert(thisFunc && "getSomeCalleeForCallSite(): Not a valid call site?"); DSGraph &DSG = getDSGraph(*thisFunc); |