Eliminated the CompletedNodes argument to the cloneReachable* methods. This
[oota-llvm.git] / include / llvm / Analysis / DSGraph.h
index 64e0b6bf11bccedeb40838337dab7ce3fce3cfe6..7307f44ae52d93a6b4ed2246b69db9aa23e6030f 100644 (file)
@@ -243,10 +243,8 @@ public:
   };
 
 private:
-  void cloneReachableNodes(const DSNode*  Node,
-                           unsigned BitsToClear,
-                           NodeMapTy& OldNodeMap,
-                           NodeMapTy& CompletedNodeMap);
+  void cloneReachableNodes(const DSNode*  Node, unsigned BitsToClear,
+                           NodeMapTy& OldNodeMap);
 
 public:
   void updateFromGlobalGraph();
@@ -254,7 +252,6 @@ public:
   void cloneReachableSubgraph(const DSGraph& G,
                               const hash_set<const DSNode*>& RootNodes,
                               NodeMapTy& OldNodeMap,
-                              NodeMapTy& CompletedNodeMap,
                               unsigned CloneFlags = 0);