diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-07-22 12:08:58 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-07-22 12:08:58 +0000 |
commit | 40c600e8f399042f1ae5b5ab0fab713c09ee8b44 (patch) | |
tree | b76c3f4558f20a9d3317c8bf8f633908754ffac6 /lib/Analysis/DataStructure/DataStructure.cpp | |
parent | 908c1f6fc5f973353142370bd26603cebb2b7ad4 (diff) |
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/DataStructure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/DataStructure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/DataStructure.cpp b/lib/Analysis/DataStructure/DataStructure.cpp index fe38152f31..a3fecec69c 100644 --- a/lib/Analysis/DataStructure/DataStructure.cpp +++ b/lib/Analysis/DataStructure/DataStructure.cpp @@ -1529,9 +1529,9 @@ void DSGraph::removeDeadNodes(unsigned Flags) { GlobalNodeMap.clear(); GlobalsGraph->removeTriviallyDeadNodes(); - // At this point, any nodes which are visited, but not alive, are nodes which - // should be moved to the globals graph. Loop over all nodes, eliminating - // completely unreachable nodes, and moving visited nodes to the globals graph + // At this point, any nodes which are visited, but not alive, are nodes + // which can be removed. Loop over all nodes, eliminating completely + // unreachable nodes. // std::vector<DSNode*> DeadNodes; DeadNodes.reserve(Nodes.size()); |