From 43236c265b65d3e9447f84272300db648416d37e Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 3 Nov 2010 10:39:15 +0000 Subject: In gcc/objc/: 2010-11-03 Nicola Pero In gcc/objc/: 2010-11-03 Nicola Pero * objc-act.c (maybe_make_artificial_property_decl): New. (objc_maybe_build_component_ref): Call maybe_make_artificial_property_decl if a property can not be found. Do not call objc_finish_message_expr if PROPERTY_HAS_NO_GETTER. * objc-act.h Updated comments. (PROPERTY_HAS_NO_GETTER): New. (PROPERTY_HAS_NO_SETTER): New. * objc-tree.def: Updated comment. In gcc/testsuite/: 2010-11-03 Nicola Pero * objc.dg/property/dotsyntax-1.m: New. * objc.dg/property/dotsyntax-2.m: New. * obj-c++.dg/property/dotsyntax-1.mm: New. * obj-c++.dg/property/dotsyntax-2.mm: New. From-SVN: r166237 --- gcc/objc/objc-tree.def | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc/objc/objc-tree.def') diff --git a/gcc/objc/objc-tree.def b/gcc/objc/objc-tree.def index 5da2671..7316675 100644 --- a/gcc/objc/objc-tree.def +++ b/gcc/objc/objc-tree.def @@ -55,7 +55,11 @@ DEFTREECODE (CLASS_REFERENCE_EXPR, "class_reference_expr", tcc_expression, 1) * else, it will remain as a PROPERTY_REF until we get to gimplification; at that point, we convert each PROPERTY_REF into a 'getter' call during ObjC/ObjC++ gimplify. -*/ + + Please note that when the Objective-C 2.0 "dot-syntax" 'object.component' + is encountered, where 'component' is not a property but there are valid + setter/getter methods for it, an artificial PROPERTY_DECL is generated + and used in the PROPERTY_REF. */ DEFTREECODE (PROPERTY_REF, "property_ref", tcc_expression, 2) /* -- cgit v1.1