summaryrefslogtreecommitdiff
path: root/test/ARCMT
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2015-10-21 18:06:38 +0000
committerJohn McCall <rjmccall@apple.com>2015-10-21 18:06:38 +0000
commitb4456eb59f4c1ff0cec951c0bde60e62f082a5fb (patch)
tree7101f86d467a90ee15d89c9950d3d460d3773f89 /test/ARCMT
parent4673434589b49bc514150f00391673c8c15967f9 (diff)
Some minor ARC diagnostic improvements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ARCMT')
-rw-r--r--test/ARCMT/checking.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ARCMT/checking.m b/test/ARCMT/checking.m
index 11a57538d7..0ce894cb42 100644
--- a/test/ARCMT/checking.m
+++ b/test/ARCMT/checking.m
@@ -180,7 +180,7 @@ void test6(unsigned cond) {
switch (cond) {
case 0:
;
- id x; // expected-note {{jump bypasses initialization of retaining variable}}
+ id x; // expected-note {{jump bypasses initialization of __strong variable}}
case 1: // expected-error {{cannot jump}}
x = 0;