diff options
Diffstat (limited to 'lib/Analysis/CFRefCount.cpp')
-rw-r--r-- | lib/Analysis/CFRefCount.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp index c9917da82e..0a6b48f99e 100644 --- a/lib/Analysis/CFRefCount.cpp +++ b/lib/Analysis/CFRefCount.cpp @@ -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); |