diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-23 21:59:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-23 21:59:34 +0000 |
commit | 9f9da538d6912254868b7ad311e97a5904551cdc (patch) | |
tree | 810578c010a2b77f1e057fecb65cd57bdab7135f /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | ccb6faad7ec2c19d5dad7db9bf747832fae53fe0 (diff) | |
download | bcm5719-llvm-9f9da538d6912254868b7ad311e97a5904551cdc.tar.gz bcm5719-llvm-9f9da538d6912254868b7ad311e97a5904551cdc.zip |
a hack to allow count-aa to work with ds-aa :(
llvm-svn: 20791
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-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 47ffc87cc7d..640463db301 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -305,7 +305,7 @@ unsigned BUDataStructures::calculateGraphs(Function *F, // releaseMemory - If the pass pipeline is done with this pass, we can release // our memory... here... // -void BUDataStructures::releaseMemory() { +void BUDataStructures::releaseMyMemory() { for (hash_map<Function*, DSGraph*>::iterator I = DSInfo.begin(), E = DSInfo.end(); I != E; ++I) { I->second->getReturnNodes().erase(I->first); |