diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-31 21:54:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-31 21:54:51 +0000 |
commit | e3c00e9eeeff35a32d2c18a32fb87efba8acc821 (patch) | |
tree | 200362e5ab831f643f830303077063b479d773ba /llvm/lib/Analysis/DataStructure | |
parent | 68172d44c22303a863583228717112e670e77831 (diff) | |
download | bcm5719-llvm-e3c00e9eeeff35a32d2c18a32fb87efba8acc821.tar.gz bcm5719-llvm-e3c00e9eeeff35a32d2c18a32fb87efba8acc821.zip |
Fix comment
llvm-svn: 17377
Diffstat (limited to 'llvm/lib/Analysis/DataStructure')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index bf4b01cfc1e..a358cc5f910 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -323,7 +323,7 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) { DSScalarMap &MainSM = Graph.getScalarMap(); ReachabilityCloner RC(*GlobalsGraph, Graph, DSGraph::StripAllocaBit); - // Clone everything reachable from globals in the "main" graph into the + // Clone everything reachable from globals in the function graph into the // globals graph. for (DSScalarMap::global_iterator I = MainSM.global_begin(), E = MainSM.global_end(); I != E; ++I) |