Add a comment and fix a memory leak. Thanks to Vikram for pointing this out.
authorChris Lattner <sabre@nondot.org>
Mon, 4 Dec 2006 21:22:45 +0000 (21:22 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 4 Dec 2006 21:22:45 +0000 (21:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32196 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/IPA/CallGraph.cpp

index 9c22b7cc5e260ab4b73364a4ce3953807be6326f..61d00f02528450d6689cf6f6b218af95f8c31870 100644 (file)
@@ -20,6 +20,9 @@
 #include <ostream>
 using namespace llvm;
 
+/// isOnlyADirectCall - Return true if this callsite is *just* a direct call to
+/// the specified function.  Specifically return false if the callsite also
+/// takes the address of the function.
 static bool isOnlyADirectCall(Function *F, CallSite CS) {
   if (!CS.getInstruction()) return false;
   for (CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); I != E; ++I)
@@ -179,10 +182,8 @@ private:
   //
   // destroy - Release memory for the call graph
   virtual void destroy() {
-    if (!CallsExternalNode) {
-      delete CallsExternalNode;
-      CallsExternalNode = 0;
-    }
+    delete CallsExternalNode;
+    CallsExternalNode = 0;
   }
 };