]> granicus.if.org Git - clang/commitdiff
Title-case the names of bug types.
authorTed Kremenek <kremenek@apple.com>
Thu, 2 Apr 2009 02:40:45 +0000 (02:40 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 2 Apr 2009 02:40:45 +0000 (02:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68274 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFRefCount.cpp

index c9917da82eec3a9fff02e45b41aa433b3425f2b6..0a6b48f99e07bfc470d88795ebbc25362f0e1a60 100644 (file)
@@ -2499,13 +2499,13 @@ void CFRefCount::RegisterChecks(BugReporter& BR) {
   const char* name = 0;
   
   if (isGCEnabled())
-    name = "leak of returned object (GC)";
+    name = "Leak of returned object when using garbage collection";
   else if (getLangOptions().getGCMode() == LangOptions::HybridGC)
-    name = "[naming convention] leak of returned object (hybrid MM, "
-           "non-GC)";
+    name = "Leak of returned object when not using garbage collection (GC) in "
+           "dual GC/non-GC code";
   else {
     assert(getLangOptions().getGCMode() == LangOptions::NonGC);
-    name = "leak of returned object";
+    name = "Leak of returned object";
   }
   
   leakAtReturn = new LeakAtReturn(this, name);
@@ -2513,12 +2513,13 @@ void CFRefCount::RegisterChecks(BugReporter& BR) {
 
   // Second, register leaks within a function/method.
   if (isGCEnabled())
-    name = "leak (GC)";  
+    name = "Leak of object when using garbage collection";  
   else if (getLangOptions().getGCMode() == LangOptions::HybridGC)
-    name = "leak (hybrid MM, non-GC)";
+    name = "Leak of object when not using garbage collection (GC) in "
+           "dual GC/non-GC code";
   else {
     assert(getLangOptions().getGCMode() == LangOptions::NonGC);
-    name = "leak";
+    name = "Leak";
   }
   
   leakWithinFunction = new LeakWithinFunction(this, name);