allow passing clone flags into the ctor

llvm-svn: 20747
This commit is contained in:
Chris Lattner 2005-03-21 22:49:43 +00:00
parent c1439d539f
commit f9ef3f0bb4
1 changed files with 2 additions and 1 deletions

View File

@ -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();