diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-20 02:40:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 02:40:04 +0000 |
commit | bf30e7268cc367bb1fca8cb752a3dcc503d87a76 (patch) | |
tree | 1cd32c0b47ae5c0e3dc38dca02bb1bb15bcd907e /lib/Analysis/DataStructure/Local.cpp | |
parent | 9454dda28a7c2d27dafa3d1800073b993414442f (diff) |
some methods got renamed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 8eacc1f38e..0317170f90 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -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]); |