summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
diff options
context:
space:
mode:
authorGeorge Karpenkov <ekarpenkov@apple.com>2019-01-10 18:16:25 +0000
committerGeorge Karpenkov <ekarpenkov@apple.com>2019-01-10 18:16:25 +0000
commit0bb17c4634fe639a17c06fab871af43c621e34c4 (patch)
treec29448d590a3072c1d74df84340bf752ee246540 /clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
parent42c6ac748e5f06a902f019c14fe54ed8bb453745 (diff)
downloadbcm5719-llvm-0bb17c4634fe639a17c06fab871af43c621e34c4.tar.gz
bcm5719-llvm-0bb17c4634fe639a17c06fab871af43c621e34c4.zip
[analyzer] Update the category name for RetainCountChecker reports
..now that it includes OSObjects rdar://46509986 Differential Revision: https://reviews.llvm.org/D56404 llvm-svn: 350869
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp b/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
index eeff47ba82a..00a912f27a8 100644
--- a/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
@@ -757,15 +757,15 @@ ObjCDeallocChecker::ObjCDeallocChecker()
MissingReleaseBugType.reset(
new BugType(this, "Missing ivar release (leak)",
- categories::MemoryCoreFoundationObjectiveC));
+ categories::MemoryRefCount));
ExtraReleaseBugType.reset(
new BugType(this, "Extra ivar release",
- categories::MemoryCoreFoundationObjectiveC));
+ categories::MemoryRefCount));
MistakenDeallocBugType.reset(
new BugType(this, "Mistaken dealloc",
- categories::MemoryCoreFoundationObjectiveC));
+ categories::MemoryRefCount));
}
void ObjCDeallocChecker::initIdentifierInfoAndSelectors(
OpenPOWER on IntegriCloud