diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-11 21:22:15 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-08-11 21:22:15 +0000 |
commit | 0bce17e57204d94156e3a38c3cefc9113d44c491 (patch) | |
tree | dc4594a9f957981985e3818fddf23cbe3db2b6a9 /clang | |
parent | 1675ee7a02946c8a5a0396fb997aa795bbb70fbf (diff) | |
download | bcm5719-llvm-0bce17e57204d94156e3a38c3cefc9113d44c491.tar.gz bcm5719-llvm-0bce17e57204d94156e3a38c3cefc9113d44c491.zip |
Change text of diagnostics on user request.
radar 7948654.
llvm-svn: 110857
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 | ||||
-rw-r--r-- | clang/test/SemaObjC/property-not-lvalue.m | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/Basic/DiagnosticSemaKinds.td b/clang/include/clang/Basic/DiagnosticSemaKinds.td index aaf8634758e..f6987e8e3af 100644 --- a/clang/include/clang/Basic/DiagnosticSemaKinds.td +++ b/clang/include/clang/Basic/DiagnosticSemaKinds.td @@ -2234,7 +2234,7 @@ def ext_integer_complement_complex : Extension< def error_nosetter_property_assignment : Error< "setter method is needed to assign to object using property" " assignment syntax">; def error_no_subobject_property_setting : Error< - "expression is not assignable using property assignment syntax">; + "expression is not assignable">; def ext_freestanding_complex : Extension< "complex numbers are an extension in a freestanding C99 implementation">; diff --git a/clang/test/SemaObjC/property-not-lvalue.m b/clang/test/SemaObjC/property-not-lvalue.m index 55eec3e4539..3d95d2607f8 100644 --- a/clang/test/SemaObjC/property-not-lvalue.m +++ b/clang/test/SemaObjC/property-not-lvalue.m @@ -15,8 +15,8 @@ typedef struct NSSize { void foo() { Foo *f; - f.size.width = 2.2; // expected-error {{expression is not assignable using property assignment syntax}} - f.size.inner.dim = 200; // expected-error {{expression is not assignable using property assignment syntax}} + f.size.width = 2.2; // expected-error {{expression is not assignable}} + f.size.inner.dim = 200; // expected-error {{expression is not assignable}} } // radar 7628953 @@ -28,7 +28,7 @@ void foo() { @implementation Gorf - (void)MyView_sharedInit { - self.size.width = 2.2; // expected-error {{expression is not assignable using property assignment syntax}} + self.size.width = 2.2; // expected-error {{expression is not assignable}} } - (NSSize)size {} @end |