From: Aaron Ballman Date: Tue, 23 Jul 2013 15:21:34 +0000 (+0000) Subject: Fixing the build bots from the previous commit. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bae4dc44aa75d8b7832a969bf127059b6c625a64;p=clang Fixing the build bots from the previous commit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186947 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/arc-unavailable-for-weakref.m b/test/SemaObjC/arc-unavailable-for-weakref.m index 516611f9f8..ba55f70767 100644 --- a/test/SemaObjC/arc-unavailable-for-weakref.m +++ b/test/SemaObjC/arc-unavailable-for-weakref.m @@ -87,6 +87,6 @@ __attribute__((objc_arc_weak_reference_unavailable)) @synthesize font = _font; @end -__attribute__((objc_arc_weak_reference_unavailable(1))) // expected-error {{attribute 'objc_arc_weak_reference_unavailable' takes no arguments}} +__attribute__((objc_arc_weak_reference_unavailable(1))) // expected-error {{attribute takes no arguments}} @interface I3 @end diff --git a/test/SemaObjC/attr-root-class.m b/test/SemaObjC/attr-root-class.m index a21aefd712..ecfcec0000 100644 --- a/test/SemaObjC/attr-root-class.m +++ b/test/SemaObjC/attr-root-class.m @@ -15,6 +15,6 @@ __attribute__((objc_root_class)) static void nonClassDeclaration() // expected- { } -__attribute__((objc_root_class(1))) // expected-error {{attribute 'objc_root_class' takes no arguments}} +__attribute__((objc_root_class(1))) // expected-error {{attribute takes no arguments}} @interface I1 @end diff --git a/test/SemaObjC/default-synthesize-3.m b/test/SemaObjC/default-synthesize-3.m index e41a7d30cc..0e1da47364 100644 --- a/test/SemaObjC/default-synthesize-3.m +++ b/test/SemaObjC/default-synthesize-3.m @@ -154,6 +154,6 @@ __attribute ((objc_requires_property_definitions)) // expected-error {{objc_requ @synthesize failureCount = _failureCount; @end -__attribute ((objc_requires_property_definitions(1))) // expected-error {{attribute 'objc_requires_property_definitions' takes no arguments}} +__attribute ((objc_requires_property_definitions(1))) // expected-error {{attribute takes no arguments}} @interface I1 @end