diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-10 23:47:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-10 23:47:02 +0000 |
commit | 947b10c1676212d26417e8b15a3827ea07d9c5fd (patch) | |
tree | 62501771a2525b73d8364e96d2c73de073dac50c /include/llvm/Analysis/DataStructure.h | |
parent | b0dfcbf584bb6acf6e8adb087c42fbd28ec90b12 (diff) |
add method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4686 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 75a715c5d4..930b58df59 100644 --- a/include/llvm/Analysis/DataStructure.h +++ b/include/llvm/Analysis/DataStructure.h @@ -103,6 +103,9 @@ public: } private: DSGraph &calculateGraph(Function &F, unsigned Indent); + bool ResolveFunctionCalls(DSGraph &G, unsigned &FirstResolvableCall, + std::map<Function*, DSCallSite> &InProcess, + unsigned Indent); }; |