1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Plug a minor memory leak

llvm-svn: 13317
This commit is contained in:
Chris Lattner 2004-05-02 07:31:34 +00:00
parent d8345001fa
commit 099edda1b1

View File

@ -125,6 +125,7 @@ void CallGraph::destroy() {
I != E; ++I)
delete I->second;
FunctionMap.clear();
delete CallsExternalNode;
}
static void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {