diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-21 22:49:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-21 22:49:43 +0000 |
commit | f21918bfafa15ccc2948b4c4b59e0f5fe7abce05 (patch) | |
tree | 953007248be59271140ee4ff849ce3ba42d394d0 /include/llvm/Analysis/DataStructure/DSGraph.h | |
parent | 275b3017404e9d3cfe73631257121ca020f88f21 (diff) |
allow passing clone flags into the ctor
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DSGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index 86f4f84a93..d807bd0246 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -234,7 +234,8 @@ public: // source. You need to set a new GlobalsGraph with the setGlobalsGraph // method. // - DSGraph(const DSGraph &DSG, EquivalenceClasses<GlobalValue*> &ECs); + DSGraph(const DSGraph &DSG, EquivalenceClasses<GlobalValue*> &ECs, + unsigned CloneFlags = 0); DSGraph(const DSGraph &DSG, NodeMapTy &NodeMap, EquivalenceClasses<GlobalValue*> &ECs); ~DSGraph(); |