objc-act.c (objc_build_component_ref): Adjust call to finish_class_member_access_expr due to a changed prototype.

2005-10-17  Andreas Krebbel  <krebbel1@de.ibm.com>

	* objc-act.c (objc_build_component_ref): Adjust call to
	finish_class_member_access_expr due to a changed prototype.

From-SVN: r105503
This commit is contained in:
Andreas Krebbel 2005-10-17 14:51:03 +00:00 committed by Andreas Krebbel
parent dae1bf4d22
commit 15c85bc270
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-10-17 Andreas Krebbel <krebbel1@de.ibm.com>
* objc-act.c (objc_build_component_ref): Adjust call to
finish_class_member_access_expr due to a changed prototype.
2005-08-31 Andrew Pinski <pinskia@physics.uc.edu>
PR objc/23306

View File

@ -1259,7 +1259,7 @@ objc_build_component_ref (tree datum, tree component)
front-end, but 'finish_class_member_access_expr' seems to be
a worthy substitute. */
#ifdef OBJCPLUS
return finish_class_member_access_expr (datum, component);
return finish_class_member_access_expr (datum, component, false);
#else
return build_component_ref (datum, component);
#endif