1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix comment.

llvm-svn: 7227
This commit is contained in:
Vikram S. Adve 2003-07-22 12:08:58 +00:00
parent 681385594f
commit 420ec0bb0f

View File

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