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 | f9ef3f0bb4f1241b79dbf731a09bd140eab7e960 (patch) | |
| tree | 63062cefa35027bd7dc14b2dcc1158bc818d87fd /llvm | |
| parent | c1439d539f27abb6f3fff22a1adcd1ad999fe73a (diff) | |
| download | bcm5719-llvm-f9ef3f0bb4f1241b79dbf731a09bd140eab7e960.tar.gz bcm5719-llvm-f9ef3f0bb4f1241b79dbf731a09bd140eab7e960.zip | |
allow passing clone flags into the ctor
llvm-svn: 20747
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Analysis/DataStructure/DSGraph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/DataStructure/DSGraph.h b/llvm/include/llvm/Analysis/DataStructure/DSGraph.h index 86f4f84a93a..d807bd02461 100644 --- a/llvm/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/llvm/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(); |

