some methods got renamed
authorChris Lattner <sabre@nondot.org>
Sun, 20 Mar 2005 02:40:04 +0000 (02:40 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 20 Mar 2005 02:40:04 +0000 (02:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20703 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/Local.cpp

index 8eacc1f38e0d852d2433ccb8a53cd18391028764..0317170f90fc176dfa100c81f794becdd026e752 100644 (file)
@@ -1088,9 +1088,9 @@ bool LocalDataStructures::runOnModule(Module &M) {
   // together the globals into equivalence classes.
   for (DSGraph::node_iterator I = GlobalsGraph->node_begin(),
          E = GlobalsGraph->node_end(); I != E; ++I)
-    if (I->getGlobals().size() > 1) {
+    if (I->getGlobalsList().size() > 1) {
       // First, build up the equivalence set for this block of globals.
-      const std::vector<GlobalValue*> &GVs = I->getGlobals();
+      const std::vector<GlobalValue*> &GVs = I->getGlobalsList();
       GlobalValue *First = GVs[0];
       for (unsigned i = 1, e = GVs.size(); i != e; ++i)
         GlobalECs.unionSets(First, GVs[i]);