diff options
| author | Eric Christopher <echristo@apple.com> | 2010-08-25 23:45:44 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2010-08-25 23:45:44 +0000 |
| commit | 52d5ec11cc9eb21ec7f21bafcbf6c9c3147f69c8 (patch) | |
| tree | 79ba8a48ae2c9aa3720dff444008218ba147309c | |
| parent | 6b48873d500cba9c278e1c7518fe963918eb6c49 (diff) | |
| download | bcm5719-llvm-52d5ec11cc9eb21ec7f21bafcbf6c9c3147f69c8.tar.gz bcm5719-llvm-52d5ec11cc9eb21ec7f21bafcbf6c9c3147f69c8.zip | |
Fix typo in error message and testcase.
llvm-svn: 112115
| -rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 | ||||
| -rw-r--r-- | clang/test/SemaObjC/iboutletcollection-attr.m | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index 9db39b019d7..99dfa871334 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -829,9 +829,9 @@ def err_attributes_are_not_compatible : Error< def err_attribute_wrong_number_arguments : Error< "attribute requires %0 argument(s)">; def err_iboutletcollection_type : Error< - "invalid type %0 as argument of iboutletcollection attribue">; + "invalid type %0 as argument of iboutletcollection attribute">; def err_iboutletcollection_object_type : Error< - "%select{ivar|property}1 with iboutletcollection attribue must " + "%select{ivar|property}1 with iboutletcollection attribute must " "have object type (invalid %0)">; def err_attribute_missing_parameter_name : Error< "attribute requires unquoted parameter">; diff --git a/clang/test/SemaObjC/iboutletcollection-attr.m b/clang/test/SemaObjC/iboutletcollection-attr.m index 159da36d021..fb64e3a9f53 100644 --- a/clang/test/SemaObjC/iboutletcollection-attr.m +++ b/clang/test/SemaObjC/iboutletcollection-attr.m @@ -17,14 +17,14 @@ typedef void *PV; @interface BAD { __attribute__((iboutletcollection(I, 1))) id ivar1; // expected-error {{attribute requires 1 argument(s)}} - __attribute__((iboutletcollection(B))) id ivar2; // expected-error {{invalid type 'B' as argument of iboutletcollection attribue}} - __attribute__((iboutletcollection(PV))) id ivar3; // expected-error {{invalid type 'PV' as argument of iboutletcollection attribue}} - __attribute__((iboutletcollection(PV))) void *ivar4; // expected-error {{ivar with iboutletcollection attribue must have object type (invalid 'void *')}} + __attribute__((iboutletcollection(B))) id ivar2; // expected-error {{invalid type 'B' as argument of iboutletcollection attribute}} + __attribute__((iboutletcollection(PV))) id ivar3; // expected-error {{invalid type 'PV' as argument of iboutletcollection attribute}} + __attribute__((iboutletcollection(PV))) void *ivar4; // expected-error {{ivar with iboutletcollection attribute must have object type (invalid 'void *')}} __attribute__((iboutletcollection(int))) id ivar5; // expected-error {{type argument of iboutletcollection attribute cannot be a builtin type}} } @property (nonatomic, retain) __attribute__((iboutletcollection(I,2,3))) id prop1; // expected-error {{attribute requires 1 argument(s)}} -@property (nonatomic, retain) __attribute__((iboutletcollection(B))) id prop2; // expected-error {{invalid type 'B' as argument of iboutletcollection attribue}} +@property (nonatomic, retain) __attribute__((iboutletcollection(B))) id prop2; // expected-error {{invalid type 'B' as argument of iboutletcollection attribute}} -@property __attribute__((iboutletcollection(BAD))) int prop3; // expected-error {{property with iboutletcollection attribue must have object type (invalid 'int')}} +@property __attribute__((iboutletcollection(BAD))) int prop3; // expected-error {{property with iboutletcollection attribute must have object type (invalid 'int')}} @end |

