aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-01 21:07:05 +0000
committerChris Lattner <sabre@nondot.org>2004-11-01 21:07:05 +0000
commit4457f7ea469d89353e353d534098790e8f106be9 (patch)
treefc5f68f29bea464bab1586039de2e0ef889a501e /include/llvm
parentdddc13f98693146ee34056231f748af3268a500c (diff)
downloadexternal_llvm-4457f7ea469d89353e353d534098790e8f106be9.zip
external_llvm-4457f7ea469d89353e353d534098790e8f106be9.tar.gz
external_llvm-4457f7ea469d89353e353d534098790e8f106be9.tar.bz2
Remove more dead methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17413 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Analysis/DataStructure/EquivClassGraphs.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/llvm/Analysis/DataStructure/EquivClassGraphs.h b/include/llvm/Analysis/DataStructure/EquivClassGraphs.h
index 94e250d..a634ce3 100644
--- a/include/llvm/Analysis/DataStructure/EquivClassGraphs.h
+++ b/include/llvm/Analysis/DataStructure/EquivClassGraphs.h
@@ -76,21 +76,6 @@ namespace PA {
///
Function *getSomeCalleeForCallSite(const CallSite &CS) const;
- /// getDSGraphForCallSite - Return the common data structure graph for
- /// callees at the specified call site.
- ///
- DSGraph &getDSGraphForCallSite(const CallSite &CS) const {
- return this->getDSGraph(*getSomeCalleeForCallSite(CS));
- }
-
- /// getEquivClassForCallSite - Get the set of functions in the equivalence
- /// class for a given call site.
- ///
- const std::set<Function*>& getEquivClassForCallSite(const CallSite& CS) {
- Function* leaderF = FuncECs.findClass(getSomeCalleeForCallSite(CS));
- return FuncECs.getEqClass(leaderF);
- }
-
DSGraph &getGlobalsGraph() const {
return *GlobalsGraph;
}
@@ -105,10 +90,6 @@ namespace PA {
AU.addRequired<CompleteBUDataStructures>();
}
- /// print - Print out the analysis results...
- ///
- void print(std::ostream &O, const Module *M) const {}
-
private:
void buildIndirectFunctionSets(Module &M);