aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/retain-release-path-notes.m
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-12-22 06:35:52 +0000
committerTed Kremenek <kremenek@apple.com>2011-12-22 06:35:52 +0000
commitb7dcddf1820f4d2e5c2605c12090ea7d17f9fa82 (patch)
treecee2a39a2791de2e3a3d3da68081c2e7030519eb /test/Analysis/retain-release-path-notes.m
parent04a94bcc56438b17e88db592708324041f75d48c (diff)
Fix typos in analyzer diagnostics pointed out by Matt Beaumont-Gay and Robert Purves.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@147139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis/retain-release-path-notes.m')
-rw-r--r--test/Analysis/retain-release-path-notes.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Analysis/retain-release-path-notes.m b/test/Analysis/retain-release-path-notes.m
index 84ddcae90d..adf40ec788 100644
--- a/test/Analysis/retain-release-path-notes.m
+++ b/test/Analysis/retain-release-path-notes.m
@@ -110,7 +110,7 @@ CFTypeRef CFCopyRuleViolation () {
CFTypeRef CFGetRuleViolation () {
CFTypeRef object = CFCreateSomething(); // expected-warning{{leak}} expected-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain count}}
- return object; // expected-note{{Object returned to caller as an owning reference (single retain count transferred to caller)}} expected-note{{Object leaked: object allocated and stored into 'object' is return from a function whose name ('CFGetRuleViolation') does not contain 'Copy' or 'Create'. This violates the naming convention rules given the Memory Management Guide for Core Foundation}}
+ return object; // expected-note{{Object returned to caller as an owning reference (single retain count transferred to caller)}} expected-note{{Object leaked: object allocated and stored into 'object' is returned from a function whose name ('CFGetRuleViolation') does not contain 'Copy' or 'Create'. This violates the naming convention rules given in the Memory Management Guide for Core Foundation}}
}
@implementation Foo (FundamentalMemoryManagementRules)