]> granicus.if.org Git - clang/commitdiff
property reference expression used on lhs of assignment
authorFariborz Jahanian <fjahanian@apple.com>
Thu, 9 Sep 2010 23:01:10 +0000 (23:01 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Thu, 9 Sep 2010 23:01:10 +0000 (23:01 +0000)
follows objective's semantics and is not overload'able
with an assignment operator. Fixes a crash and a missing
diagnostics. Radar 8379892.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113555 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/ExprClassification.cpp
lib/Sema/SemaExpr.cpp
test/CodeGenObjCXX/property-objects.mm
test/SemaObjCXX/propert-dot-error.mm [new file with mode: 0644]

index d7e38ebbf5c92557e8a949e3019fe5f7a642bf52..8ec81943b3fb06fd14ba813f8f275895959f5617 100644 (file)
@@ -420,7 +420,8 @@ static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
 
   // Records with any const fields (recursively) are not modifiable.
   if (const RecordType *R = CT->getAs<RecordType>()) {
-    assert(!Ctx.getLangOptions().CPlusPlus &&
+    assert((isa<ObjCImplicitSetterGetterRefExpr>(E) || 
+            !Ctx.getLangOptions().CPlusPlus) &&
            "C++ struct assignment should be resolved by the "
            "copy assignment operator.");
     if (R->hasConstFields())
index 6b3556cbaacbcf8f1bc17697a3c15c2c85f3c280..1836482fd8f6a876b06a7d9e1d32f927529a7401 100644 (file)
@@ -6685,6 +6685,8 @@ ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
                             BinaryOperatorKind Opc,
                             Expr *lhs, Expr *rhs) {
   if (getLangOptions().CPlusPlus &&
+      (!isa<ObjCImplicitSetterGetterRefExpr>(lhs) ||
+       rhs->isTypeDependent()) &&
       (lhs->getType()->isOverloadableType() ||
        rhs->getType()->isOverloadableType())) {
     // Find all of the overloaded operators visible from this
index 724cf68268223be503a377c96a5c98507d548147..8e98b0dae7e4762789d6df4cfcb1f14541e27b8d 100644 (file)
@@ -57,3 +57,22 @@ int main() {
   return 0;
 }
 
+// rdar://8379892
+// CHECK: define void @_Z1fP1A
+// CHECK: @objc_msgSend to void
+struct X {
+  X();
+  X(const X&);
+  ~X();
+};
+
+@interface A {
+  X xval;
+}
+- (X)x;
+- (void)setX:(X)x;
+@end
+
+void f(A* a) {
+  a.x = X();
+}
diff --git a/test/SemaObjCXX/propert-dot-error.mm b/test/SemaObjCXX/propert-dot-error.mm
new file mode 100644 (file)
index 0000000..3113e17
--- /dev/null
@@ -0,0 +1,21 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+// rdar: // 8379892
+
+struct X {
+  X();
+  X(const X&);
+  ~X();
+};
+
+@interface A {
+  X xval;
+}
+
+- (X)x;
+- (void)setx:(X)x;
+@end
+
+void f(A* a) {
+  a.x = X(); // expected-error {{setter method is needed to assign to object using property assignment syntax}}
+}
+