Free memory when not in use

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1618 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-01-31 18:32:49 +00:00
parent ce885e9f9d
commit dee687b9f7

View File

@ -122,6 +122,11 @@ public:
Provided.push_back(ID);
}
// releaseMemory - Data structures can be large, so free memory agressively.
virtual void releaseMemory() {
destroy();
}
private: // Implementation of CallGraph construction
void destroy();