diff options
Diffstat (limited to 'test/SemaObjC/unguarded-availability-new.m')
-rw-r--r-- | test/SemaObjC/unguarded-availability-new.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/SemaObjC/unguarded-availability-new.m b/test/SemaObjC/unguarded-availability-new.m index 474730f0d362c..ed61bf9779580 100644 --- a/test/SemaObjC/unguarded-availability-new.m +++ b/test/SemaObjC/unguarded-availability-new.m @@ -68,15 +68,15 @@ void previouslyAvailable() AVAILABLE_PREV; #ifdef WARN_PREV - // expected-note@-2 {{'previouslyAvailable' has been explicitly marked partial here}} +// expected-note@-2 {{'previouslyAvailable' has been marked as being introduced}} #endif void currentlyAvailable() AVAILABLE_CURRENT; #ifdef WARN_CURRENT - // expected-note@-2 {{'currentlyAvailable' has been explicitly marked partial here}} +// expected-note@-2 {{'currentlyAvailable' has been marked as being introduced}} #endif void willBeAvailabile() AVAILABLE_NEXT; #ifndef NO_WARNING - // expected-note@-2 {{'willBeAvailabile' has been explicitly marked partial here}} +// expected-note@-2 {{'willBeAvailabile' has been marked as being introduced in}} #endif #ifdef TEST_FUNC_CURRENT @@ -91,7 +91,7 @@ void willBeAvailabile() AVAILABLE_NEXT; typedef int AVAILABLE_NEXT new_int; #ifndef NO_WARNING - // expected-note@-2 {{'new_int' has been explicitly marked partial here}} +// expected-note@-2 {{'new_int' has been marked as being introduced in}} #endif FUNC_AVAILABLE new_int x; #ifndef NO_WARNING |