[cfe-commits] r70638 - /cfe/trunk/lib/Analysis/CFRefCount.cpp

Ted Kremenek kremenek at apple.com
Sat May 2 12:05:20 PDT 2009


Author: kremenek
Date: Sat May  2 14:05:19 2009
New Revision: 70638

URL: http://llvm.org/viewvc/llvm-project?rev=70638&view=rev
Log:
retain/release checker: Enhance leak description to say that the bug
occurs in GC mode.

Modified:
    cfe/trunk/lib/Analysis/CFRefCount.cpp

Modified: cfe/trunk/lib/Analysis/CFRefCount.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CFRefCount.cpp?rev=70638&r1=70637&r2=70638&view=diff

==============================================================================
--- cfe/trunk/lib/Analysis/CFRefCount.cpp (original)
+++ cfe/trunk/lib/Analysis/CFRefCount.cpp Sat May  2 14:05:19 2009
@@ -2519,7 +2519,11 @@
   llvm::raw_string_ostream os(Description);
   SourceManager& SMgr = Eng.getContext().getSourceManager();
   unsigned AllocLine = SMgr.getInstantiationLineNumber(AllocSite);
-  os << "Potential leak of object allocated on line " << AllocLine;
+  os << "Potential leak ";
+  if (tf.isGCEnabled()) {
+    os << "(when using garbage collection) ";
+  }  
+  os << "of an object allocated on line " << AllocLine;
   
   // FIXME: AllocBinding doesn't get populated for RegionStore yet.
   if (AllocBinding)





More information about the cfe-commits mailing list