commit | 224f7e65e0441c4fab12e41c300b494fa35a1060 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun May 02 07:31:34 2004 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun May 02 07:31:34 2004 +0000 |
tree | 3505b14b2f213bee3441c140886004517a5bb1c2 | |
parent | bdcc0b8c55041ff89b59f0ea2cdbc2ac02f26a3d [diff] [blame] |
Plug a minor memory leak git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13317 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index 8d660b9..74a28d8 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp
@@ -125,6 +125,7 @@ I != E; ++I) delete I->second; FunctionMap.clear(); + delete CallsExternalNode; } static void WriteToOutput(const CallGraphNode *CGN, std::ostream &o) {