summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-07-22 12:08:58 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-07-22 12:08:58 +0000
commit40c600e8f399042f1ae5b5ab0fab713c09ee8b44 (patch)
treeb76c3f4558f20a9d3317c8bf8f633908754ffac6 /lib
parent908c1f6fc5f973353142370bd26603cebb2b7ad4 (diff)
downloadllvm-40c600e8f399042f1ae5b5ab0fab713c09ee8b44.tar.gz
llvm-40c600e8f399042f1ae5b5ab0fab713c09ee8b44.tar.bz2
llvm-40c600e8f399042f1ae5b5ab0fab713c09ee8b44.tar.xz
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/DataStructure/DataStructure.cpp6
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());