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 | 3b7b81b814fe4cdac0930aca67359b963d2f8fe8 (patch) | |
tree | 2c3e521752b733baafaf7dbf08820f196569bc85 /lib/Analysis/DataStructure | |
parent | 2e6e8e58628320b9b5e448588b279e1bb871fb4b (diff) |
Fix comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index bf4b01cfc1..a358cc5f91 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/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) |