diff options
Diffstat (limited to 'lib/Analysis/DataStructure/Local.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index e159a6087e..311810644a 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -409,6 +409,16 @@ void GraphBuilder::visitCastInst(CastInst &CI) { // LocalDataStructures Implementation //===----------------------------------------------------------------------===// +bool LocalDataStructures::run(Module &M) { + GlobalsGraph = new DSGraph(); + + // Calculate all of the graphs... + for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) + if (!I->isExternal()) + DSInfo.insert(std::make_pair(I, new DSGraph(*I, GlobalsGraph))); + return false; +} + // releaseMemory - If the pass pipeline is done with this pass, we can release // our memory... here... // @@ -423,13 +433,3 @@ void LocalDataStructures::releaseMemory() { delete GlobalsGraph; GlobalsGraph = 0; } - -bool LocalDataStructures::run(Module &M) { - GlobalsGraph = new DSGraph(); - - // Calculate all of the graphs... - for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) - if (!I->isExternal()) - DSInfo.insert(std::make_pair(I, new DSGraph(*I, GlobalsGraph))); - return false; -} |