diff options
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DSNode.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSNode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index 5edbd72f83..da8050cd9a 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -218,13 +218,13 @@ public: /// remapLinks - Change all of the Links in the current node according to the /// specified mapping. - void remapLinks(std::map<const DSNode*, DSNodeHandle> &OldNodeMap); + void remapLinks(hash_map<const DSNode*, DSNodeHandle> &OldNodeMap); /// markReachableNodes - This method recursively traverses the specified /// DSNodes, marking any nodes which are reachable. All reachable nodes it /// adds to the set, which allows it to only traverse visited nodes once. /// - void markReachableNodes(std::set<DSNode*> &ReachableNodes); + void markReachableNodes(hash_set<DSNode*> &ReachableNodes); private: friend class DSNodeHandle; |