aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/IPModRef.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-07 07:11:49 +0000
committerChris Lattner <sabre@nondot.org>2002-11-07 07:11:49 +0000
commit0ed8e2a862842c3f829b1bf6eb57102a870c56f4 (patch)
tree55c63533ee327115b1c192f6f638b4f3e633b12b /include/llvm/Analysis/IPModRef.h
parent460ea29b456185e169a5ef036d22e25dd0afa58e (diff)
Add interfaces for ResolveCallSiteModRefInfo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/IPModRef.h')
-rw-r--r--include/llvm/Analysis/IPModRef.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/llvm/Analysis/IPModRef.h b/include/llvm/Analysis/IPModRef.h
index 929b9b1879..52d5c7edc4 100644
--- a/include/llvm/Analysis/IPModRef.h
+++ b/include/llvm/Analysis/IPModRef.h
@@ -125,7 +125,7 @@ class FunctionModRefInfo {
void computeModRef (const Function &func);
void computeModRef (const CallInst& callInst);
- DSGraph *ResolveCallSiteModRefInfo(const CallInst &CI,
+ DSGraph *ResolveCallSiteModRefInfo(CallInst &CI,
std::map<const DSNode*, DSNodeHandle> &NodeMap);
public:
@@ -203,6 +203,11 @@ public:
return getFuncInfo(func);
}
+ /// getBUDSGraph - This method returns the BU data structure graph for F
+ /// through the use of the BUDataStructures object.
+ ///
+ const DSGraph &getBUDSGraph(const Function &F);
+
// Debugging support methods
//
void print(std::ostream &O) const;